Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python 3.13 #566

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ runs:
python -m pip cache list || true

# assert no whl files have been built
if python -m pip cache info && [[ "$(python -m pip cache info | grep "Number of .*wheels:")" != "Number of "*"wheels: 0" ]]
if [[ "$python_minor_version" != "3.13" ]] && python -m pip cache info && [[ "$(python -m pip cache info | grep "Number of .*wheels:")" != "Number of "*"wheels: 0" ]]
then
echo "Dependency whl files have been built"
exit 1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: "./.github/workflows/test-os.yml"
with:
os: '["macos-12", "macos-13", "macos-14"]'
python-version: '["3.10", "3.11", "3.12", "installed"]'
python-version: '["3.10", "3.11", "3.12", "3.13.0-beta.3", "installed"]'
include: >
[
{"os": "macos-12", "python-version": "3.8"},
Expand All @@ -52,7 +52,7 @@ jobs:
uses: "./.github/workflows/test-os.yml"
with:
os: '["ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04"]'
python-version: '["3.9", "3.10", "3.11", "3.12", "installed"]'
python-version: '["3.9", "3.10", "3.11", "3.12", "3.13.0-beta.3", "installed"]'
include: >
[
{"os": "ubuntu-20.04", "python-version": "3.7"},
Expand All @@ -65,7 +65,7 @@ jobs:
uses: "./.github/workflows/test-os.yml"
with:
os: '["windows-2019", "windows-2022"]'
python-version: '["3.8", "3.9", "3.10", "3.11", "3.12", "installed"]'
python-version: '["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-beta.3", "installed"]'
include: '[{"os": "windows-2019", "python-version": "3.7"}]'

publish:
Expand Down
18 changes: 18 additions & 0 deletions python/requirements-3.13.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
humanize==4.9.0
junitparser==3.1.2
lxml==5.1.0
psutil==5.9.8
PyGithub==2.2.0
Deprecated==1.2.14
wrapt==1.16.0
PyJWT==2.8.0
PyNaCl==1.5.0
cffi==1.17.0rc1
pycparser==2.22
requests==2.32.3
certifi==2024.7.4
charset-normalizer==3.3.2
idna==3.7
urllib3==2.2.2
typing_extensions==4.12.2
urllib3==2.2.2
2 changes: 1 addition & 1 deletion python/requirements-post-3.7.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PyGithub==2.2.0
wrapt==1.16.0
PyJWT==2.8.0
PyNaCl==1.5.0
cffi==1.16.0
cffi==1.17.0rc1
pycparser==2.22
requests==2.32.3
certifi==2024.7.4
Expand Down
Loading