Skip to content

Commit

Permalink
python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
scottshambaugh committed Dec 22, 2024
1 parent 1bc6f69 commit 71797dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
continue-on-error: ${{ matrix.python-version == '' }}
defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Get full Python version
id: full-python-version
Expand Down Expand Up @@ -61,4 +61,4 @@ jobs:
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ./package-artifacts
packages-dir: ./package-artifacts
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
continue-on-error: ${{ matrix.python-version == '' }}
defaults:
run:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
### Removed

## [0.10.1] - 2024-12-22
### Added
* Python 3.13 support
### Changed
* Fix github actions

Expand Down

0 comments on commit 71797dc

Please sign in to comment.