Skip to content

Commit

Permalink
Support Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Nov 8, 2024
1 parent ec56277 commit 5362361
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: macos-13
python-version: "3.10"
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
with:
fetch-depth: 0 # required for setuptools_scm
- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_BUILD: "cp*-manylinux_x86_64 cp3*-win_amd64 cp3*-macosx_x86_64 cp3*-macosx_arm64"
CIBW_SKIP: "cp37-*"
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

unreleased
----------

* Added support for Python 3.13

v1.2.2 (2024-10-04)
-------------------
* :pr:`139`: Fix an error that occurred when decoding BAM records with missing
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake8,black,mypy,docs,py38,py39,py310,py311,py312
envlist = flake8,black,mypy,docs,py38,py39,py310,py311,py312,py313
isolated_build = True

[testenv]
Expand Down

0 comments on commit 5362361

Please sign in to comment.