Skip to content

Commit 4ef738b

Browse files
authored
Merge pull request #292 from rsocket/python_3_13
added python 3.13. to test flow
2 parents 1200045 + 59cc42c commit 4ef738b

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}

requirements.txt

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,26 @@ coverage==6.5.0
77
coveralls==3.3.1
88
decoy==2.1.1
99
flake8==7.1.1
10-
pytest-asyncio==0.23.4
10+
11+
pytest-asyncio==0.25.3; python_version > "3.8"
12+
pytest-asyncio==0.23.4; python_version == "3.8"
13+
1114
pytest-cov==4.1.0
12-
pytest-profiling==1.7.0
15+
16+
pytest-profiling==1.8.1; python_version > "3.8"
17+
pytest-profiling==1.7.0; python_version == "3.8"
18+
1319
pytest-rerunfailures==13.0
1420
pytest-timeout==2.3.1
1521
pytest-xdist==3.6.1
16-
pytest==7.4.4
22+
23+
pytest==8.3.4; python_version > "3.8"
24+
pytest==7.4.4; python_version == "3.8"
25+
1726
quart==0.19.9
1827
reactivex==4.0.4
1928
starlette==0.40.0
20-
cbitstruct==1.1.0
29+
cbitstruct==1.1.0; python_version <= "3.12"
2130
cloudevents==1.11.0
2231
pydantic==1.10.18
2332
Werkzeug==3.0.4

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers =
2020
Programming Language :: Python :: 3.10
2121
Programming Language :: Python :: 3.11
2222
Programming Language :: Python :: 3.12
23+
Programming Language :: Python :: 3.13
2324
Environment :: Web Environment
2425
License :: OSI Approved :: MIT License
2526
Natural Language :: English

0 commit comments

Comments
 (0)