Skip to content

Commit 55deb0a

Browse files
authored
Add support for Python3.11 alpha and upgrade pytest and py (#97)
* feat: be specific with the os version and give python3.11-alpha3 a try * fix: broken package in python3.11 Pytest and Py package are both broken unless a latest version of both are released. In order to fix this, both of them are upgraded. The following issue can take to both the issues: pytest-dev/apipkg#30 Authored-by: Vinit Kumar <[email protected]> Signed-off-by: Vinit Kumar <[email protected]> * fix: missing comma
1 parent a50e7ca commit 55deb0a

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9, pypy-3.8, 3.10.0]
11+
python-version: [3.7, 3.8, 3.9, pypy-3.8, 3.10.0, '3.11.0-alpha.3']
1212
os: [
1313
ubuntu-20.04,
14-
macOS-latest,
15-
windows-latest,
14+
windows-2022,
15+
macos-10.15,
1616
]
1717

1818
steps:

requirements.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
requests>=2.20.0
22
defusedxml==0.7.1
3-
pytest
3+
pytest==7.0.0rc1
4+
py==1.11.0
45
xmltodict
56

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ packaging==21.0
2424
# via pytest
2525
pluggy==1.0.0
2626
# via pytest
27-
py==1.10.0
28-
# via pytest
27+
py==1.11.0
28+
# via
29+
# -r requirements.in
30+
# pytest
2931
pyparsing==2.4.7
3032
# via packaging
31-
pytest==6.2.5
33+
pytest==7.0.0rc1
3234
# via -r requirements.in
3335
requests==2.26.0
3436
# via -r requirements.in
35-
toml==0.10.2
37+
tomli==2.0.0
3638
# via pytest
3739
typing-extensions==3.10.0.2
3840
# via importlib-metadata

0 commit comments

Comments
 (0)