From 53ea16ac85312e9dc931f958c270de03e95dbede Mon Sep 17 00:00:00 2001 From: Muhammad Yasirroni <48709672+yasirroni@users.noreply.github.com> Date: Fri, 2 Feb 2024 07:27:48 +0000 Subject: [PATCH] support 3.8 --- .github/workflows/test.yml | 2 +- setup.py | 3 ++- tox.ini | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 66e32bd..4e879cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 5d5c56b..6401821 100644 --- a/setup.py +++ b/setup.py @@ -69,6 +69,7 @@ def read(*rnames): "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -98,7 +99,7 @@ def read(*rnames): 'pip-tools', ], ), - python_requires='>=3.9', + python_requires='>=3.8', tests_require=TESTS_REQUIRE, include_package_data=True, zip_safe=False, diff --git a/tox.ini b/tox.ini index 8422e4d..2070593 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist = py39, py310, py311, flake8 [gh-actions] python = + 3.8: py38 3.9: py39 3.10: py310, flake8 3.11: py311