Skip to content

Commit

Permalink
Reinstate Python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Edwards committed Nov 15, 2022
1 parent 6660ee8 commit c804fea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3.9']
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3.9']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def get_version(filename: str) -> str:
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -44,7 +45,6 @@ def get_version(filename: str) -> str:
],
keywords="concurrent future deferred aiodataloader",
py_modules=["aiodataloader"],
python_requires=">=3.6",
extras_require={
"lint": ["black", "flake8", "flake8-import-order", "mypy"],
"test": tests_require,
Expand Down

0 comments on commit c804fea

Please sign in to comment.