Skip to content

Commit 596af32

Browse files
committed
Test against python versions 3.11, 3.12, 3.12
1 parent 83ec9e9 commit 596af32

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/cicd.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,18 @@ jobs:
2222
python-version: "3.6"
2323
- os: ubuntu-latest
2424
python-version: "3.7"
25+
- os: ubuntu-latest
26+
python-version: "3.8"
2527
- os: ubuntu-latest
2628
python-version: "3.9"
2729
- os: ubuntu-latest
2830
python-version: "3.10"
31+
- os: ubuntu-latest
32+
python-version: "3.11"
33+
- os: ubuntu-latest
34+
python-version: "3.12"
35+
- os: ubuntu-latest
36+
python-version: "3.13"
2937
steps:
3038
- name: Check out repo
3139
uses: actions/checkout@v3
@@ -78,4 +86,4 @@ jobs:
7886
uses: pypa/[email protected]
7987
with:
8088
user: __token__
81-
password: ${{ secrets.pypi_password }}
89+
password: ${{ secrets.pypi_password }}

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ def readme():
1717
"Programming Language :: Python :: 3.8",
1818
"Programming Language :: Python :: 3.9",
1919
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2023
]
2124

2225
install_requires = [

0 commit comments

Comments
 (0)