Skip to content

Commit a42b1e1

Browse files
authored
Merge pull request #115 from mcaulifn/mcaulifn/add-3.8
fix(python): Add support for 3.8
2 parents e5dffa1 + d31ba76 commit a42b1e1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/pullrequest.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
max-parallel: 4
1515
matrix:
1616
python-version:
17+
- 3.8
1718
- 3.9
1819
- "3.10"
1920
- 3.11

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@
1818
setup(
1919
author="Nathaniel McAuliffe",
2020
author_email='[email protected]',
21-
python_requires='>=3.9',
21+
python_requires='>=3.8',
2222
classifiers=[
2323
'Development Status :: 4 - Beta',
2424
'Intended Audience :: Developers',
2525
'Natural Language :: English',
2626
'Programming Language :: Python :: 3',
27+
'Programming Language :: Python :: 3.8',
2728
'Programming Language :: Python :: 3.9',
2829
'Programming Language :: Python :: 3.10',
2930
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39, py310, py311, coverage, pylint
2+
envlist = py38, py39, py310, py311, coverage, pylint
33

44

55
[testenv:pylint]

0 commit comments

Comments
 (0)