Skip to content

Commit

Permalink
Merge pull request #115 from mcaulifn/mcaulifn/add-3.8
Browse files Browse the repository at this point in the history
fix(python): Add support for 3.8
  • Loading branch information
mcaulifn authored Jan 26, 2023
2 parents e5dffa1 + d31ba76 commit a42b1e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
max-parallel: 4
matrix:
python-version:
- 3.8
- 3.9
- "3.10"
- 3.11
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@
setup(
author="Nathaniel McAuliffe",
author_email='[email protected]',
python_requires='>=3.9',
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311, coverage, pylint
envlist = py38, py39, py310, py311, coverage, pylint


[testenv:pylint]
Expand Down

0 comments on commit a42b1e1

Please sign in to comment.