Skip to content

Commit 877f592

Browse files
add explicit support py3.8 back (#151)
Co-authored-by: Gabriel Fioravante <[email protected]>
1 parent 90b55ce commit 877f592

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python: ["3.9", "3.10", "3.11"]
9+
python: ["3.8", "3.9", "3.10", "3.11"]
1010
os: [ubuntu-latest, windows-latest, macos-latest]
1111
include:
12+
- python: "3.8"
13+
tox_env: "py38"
1214
- python: "3.9"
1315
tox_env: "py39"
1416
- python: "3.10"
@@ -35,7 +37,7 @@ jobs:
3537
- name: Set up Python
3638
uses: actions/setup-python@v2
3739
with:
38-
python-version: "3.9"
40+
python-version: "3.8"
3941
- name: Install tox
4042
run: |
4143
python -m pip install --upgrade pip setuptools
@@ -52,7 +54,7 @@ jobs:
5254
- name: Set up Python
5355
uses: actions/setup-python@v2
5456
with:
55-
python-version: "3.9"
57+
python-version: "3.8"
5658
- name: Install wheel
5759
run: |
5860
python -m pip install --upgrade pip setuptools

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers=
1414
Intended Audience :: Developers
1515
License :: OSI Approved :: MIT License
1616
Operating System :: OS Independent
17+
Programming Language :: Python :: 3.8
1718
Programming Language :: Python :: 3.9
1819
Programming Language :: Python :: 3.10
1920
Programming Language :: Python :: 3.11
@@ -23,7 +24,7 @@ classifiers=
2324

2425
[options]
2526
packages = find:
26-
python_requires = >= 3.9
27+
python_requires = >= 3.8
2728

2829
[options.packages.find]
2930
exclude = docs, tests

0 commit comments

Comments
 (0)