Skip to content

Commit

Permalink
fix supported python versions to include 3.6, 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Jun 24, 2021
1 parent d62d643 commit 00b373a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
py-version: ['3.8', '3.9']
py-version: ['3.6', '3.7', '3.8', '3.9']
name: Python ${{ matrix.py-version }} Test
steps:
- name: Checkout
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@
'fastapi_rfc7807': ['py.typed'],
},
include_package_data=True,
python_requires='>=3.8',
python_requires='>=3.6',
install_requires=[
'fastapi',
# FIXME: temporarily pinned as the 0.14.x release has breaking changes and fastapi
# has not yet been updated for them.
'starlette==0.13.6',
'starlette',
'pydantic',
],
keywords=[
Expand All @@ -52,7 +50,10 @@
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ python =

[testenv]
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
Expand Down

0 comments on commit 00b373a

Please # to comment.