Skip to content

Commit

Permalink
Merge pull request #147 from marcelm/py313
Browse files Browse the repository at this point in the history
Support Python 3.13; drop support for Python 3.8
  • Loading branch information
rhpvorderman authored Nov 11, 2024
2 parents ec56277 + 32aff0b commit ae04111
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 2 additions & 4 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.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: macos-13
python-version: "3.10"
Expand Down Expand Up @@ -88,11 +88,9 @@ 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-*"
CIBW_TEST_SKIP: "cp38-macosx_*:arm64"
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

unreleased
----------

* Added support for Python 3.13
* Dropped support for Python 3.8

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 README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
dnaio processes FASTQ, FASTA and uBAM files
===========================================

``dnaio`` is a Python 3.8+ library for very efficient parsing and writing of FASTQ and also FASTA files.
``dnaio`` is a Python 3.9+ library for very efficient parsing and writing of FASTQ and also FASTA files.
Since ``dnaio`` version 1.1.0, support for efficiently parsing uBAM files has been implemented.
This allows reading ONT files from the `dorado <https://github.com/nanoporetech/dorado>`_
basecaller directly.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">3.7"
requires-python = ">=3.9"
dependencies = [
"xopen >= 1.4.0"
]
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,py39,py310,py311,py312,py313
isolated_build = True

[testenv]
Expand Down

0 comments on commit ae04111

Please sign in to comment.