Skip to content

Commit

Permalink
support python3.9 (#262)
Browse files Browse the repository at this point in the history
* support python3.9

* add ci for python3.9
  • Loading branch information
koxudaxi authored Nov 14, 2020
1 parent edfb52f commit f4e54d6
Show file tree
Hide file tree
Showing 2 changed files with 4 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 @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython

[options]
Expand All @@ -31,7 +32,8 @@ install_requires =
openapi-spec-validator>=0.2.8,<0.3
jinja2>=2.10.1,<3.0
inflect>=4.1.0,<5.0
pydantic[email]>=1.5.1,<2.0
pydantic[email]>=1.5.1,<2.0;python_version<'3.9'
pydantic[email]>=1.7.2,<2.0;python_version>='3.9'
black>=19.10b0,<20
isort>=4.3.21,<6.0
PySnooper>=0.4.1,<1.0.0
Expand Down

0 comments on commit f4e54d6

Please sign in to comment.