Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
# 3.11 was released 2022-10-24 and end-of-life will be 2027-10
# 3.12 was released 2023-10-02 and end-of-life will be 2028-10
# 3.13 was released 2024-10-07 and end-of-life will be 2029-10
# 3.14 will be released 2025-10-07 and end-of-life will be 2030-10
# 3.14 was released 2025-10-07 and end-of-life will be 2030-10
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ['3.9', '3.13']
python-version: ['3.9', '3.13', '3.14']
# 2024-04-27: macos-latest, which points to macos-14-arm64, does not work anymore because of error 134 close
# towards the end when testing with parallelization=8. Could be a problem with compiling for ARM.
os: [macos-13, macos-14, macos-15, ubuntu-latest, ubuntu-24.04-arm, windows-latest]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels-rapidgzip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: '3.14'

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: '3.14'

- name: Install Dependencies
# cibuildwheel-2.23.3 fails with:
Expand Down
1 change: 1 addition & 0 deletions python/rapidgzip/conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ python:
- 3.11
- 3.12
- 3.13
- 3.14
1 change: 1 addition & 0 deletions python/rapidgzip/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C++",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
Loading