Skip to content

Commit eb488ea

Browse files
committed
bump pins to support 3.9
1 parent d7fd67a commit eb488ea

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
41-
python-version: ["3.5", "3.6", "3.7", "3.8"]
41+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]
4242
steps:
4343
- uses: actions/checkout@v2
4444
- uses: conda-incubator/setup-miniconda@v2
@@ -55,4 +55,4 @@ jobs:
5555
uses: codecov/codecov-action@v1
5656
with:
5757
file: ./cov.xml
58-
env_vars: OS,PYTHON
58+
env_vars: OS,PYTHON

conda.recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ build:
1717

1818
requirements:
1919
run:
20-
- python >=3.5, <3.9
20+
- python >=3.5, <3.10
2121
- flask
2222
- werkzeug >=0.15, <2.0
2323
- python-dateutil
2424
- flask-restx
2525
- flask-cors
2626
build:
27-
- python >=3.5, <3.9
27+
- python >=3.5, <3.10
2828
- setuptools
2929

3030
test:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"Intended Audience :: Developers",
5353
"Environment :: Web Environment"
5454
],
55-
python_requires=">=3.5, <3.9",
55+
python_requires=">=3.5, <3.10",
5656
install_requires=install_requires,
5757
extras_require=extras_require,
5858
include_package_data=True,

0 commit comments

Comments
 (0)