Skip to content

Commit adfd24b

Browse files
committed
add python 3.9
1 parent c47d6a4 commit adfd24b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: ["3.8"]
11-
os: [ubuntu-latest, macos-latest, windows-latest]
10+
python-version: ["3.8","3.9"]
11+
os: [ubuntu-latest, windows-latest]
1212

1313
steps:
1414
- uses: actions/checkout@v3

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
forbiddenfruit==0.1.4
22
djangorestframework==3.12.4
3-
pyyaml==6.0
3+
pyyaml>=5.3.1,<5.4
44
uritemplate==4.1.1
55
djangorestframework-simplejwt==5.2.0
66
pytz==2022.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
setup(
1818
author="Michael Gendy",
1919
author_email="[email protected]",
20-
python_requires="==3.8",
20+
python_requires=">=3.8, <3.10",
2121
classifiers=[
2222
"Development Status :: 4 - Beta",
2323
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)