Skip to content

Commit 9d0afae

Browse files
authored
Added python 3.12 + 3.13 to tests (#87)
* Added python 3.12 + 3.13 to tests * Updated workflow
1 parent 781cfd9 commit 9d0afae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ def get_requirements(env=""):
2828
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
2929
"Topic :: Internet :: WWW/HTTP :: WSGI",
3030
],
31-
python_requires=">=3.8",
31+
python_requires=">=3.9",
3232
install_requires=get_requirements(),
3333
)

0 commit comments

Comments
 (0)