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
6 changes: 5 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
pyver: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
pyver: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -60,6 +60,10 @@ jobs:
if: ${{ startsWith(matrix.os, 'ubuntu') && matrix.pyver == '3.13' }}
run: docker run --rm -v ${{github.workspace}}/:/io $DOCKER_IMAGE sh /io/tools/package.sh /io /io/dist travis OFF Release cp313-cp313

- name: Package Python 3.14
if: ${{ startsWith(matrix.os, 'ubuntu') && matrix.pyver == '3.14' }}
run: docker run --rm -v ${{github.workspace}}/:/io $DOCKER_IMAGE sh /io/tools/package.sh /io /io/dist travis OFF Release cp314-cp314

- name: Windows Package Python
if: ${{ startsWith(matrix.os, 'windows') }}
shell: cmd
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Illumina sequencers including **NextSeq 1k/2k** and NovaSeqX. These libraries ar
with one exception: GA systems have been excluded.

***
> We now support an interface to 3.8-3.13
> Note that 3.10-3.13 are CentOS 7 or later while earlier versions support Centos 5 or later
> We now support an interface to 3.8-3.14
> Note that 3.10-3.14 are CentOS 7 or later while earlier versions support Centos 5 or later
> Note: dumptext has been deprecated in favor of imaging_table and will be removed in the next version
***

Expand Down Expand Up @@ -74,7 +74,7 @@ Install

### Python

Supported versions for binary distribution: 3.8-3.13.
Supported versions for binary distribution: 3.8-3.14.

** Python 2.7, 3.5, 3.6, 3.7 support has been removed **

Expand Down
6 changes: 6 additions & 0 deletions docs/src/changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes {#changes}

## v1.8.0

| Date | Description |
|------------|-----------------------------|
| 2025-12-09 | Add support for Python 3.14 |

## v1.7.0

| Date | Description |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metric files are produced after a run during secondary analysis (index metrics)
the original data (collapsed quality scores).

***
> We now support an interface to Python 3.8 to 3.13 (see contents below)
> We now support an interface to Python 3.8 to 3.14 (see contents below)
***

Compatibility
Expand Down
4 changes: 2 additions & 2 deletions docs/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ In addition to the binary archive below, there are language specific packages in

Note, we only distribute from GitHub currently, and not PyPi or NuGet.org. These should
be compatible with most Linux Versions, Mac OSX and Windows. We support
Python 3.8 to 3.13.
Python 3.8 to 3.14.

### Binary Archive (C++, C#, Python, Java)

Expand All @@ -35,7 +35,7 @@ For Pythons users, a Wheel package is available on Github Releases or PyPI:
$ pip install interop
~~~~~~~~~~~~~

Supported versions for binary distribution: 3.8 to 3.13.
Supported versions for binary distribution: 3.8 to 3.14.

Test the installation

Expand Down
2 changes: 1 addition & 1 deletion docs/src/python_binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Older versions (prior to 1.1.3) can be installed using:
$ pip install -f https://github.com/Illumina/interop/releases/tag/v1.1.2 interop
$ pip install -f https://github.com/Illumina/interop/releases/latest interop

Note, only Python versions 3.8 to 3.13 are currently
Note, only Python versions 3.8 to 3.14 are currently
supported as binary builds. Other Python versions must be built
from source.

Expand Down
1 change: 1 addition & 0 deletions tools/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ if [ -e /opt/python ] ; then
/opt/python/cp311-cp311/bin/python -m pip install numpy==2.0.0 pandas setuptools
/opt/python/cp312-cp312/bin/python -m pip install numpy==2.0.0 pandas setuptools
/opt/python/cp313-cp313/bin/python -m pip install numpy==2.0.0 pandas setuptools
/opt/python/cp314-cp314/bin/python -m pip install numpy==2.0.0 pandas setuptools
/opt/python/cp310-cp310/bin/python -m pip install swig==4.0.2 --prefix=/tmp/usr

echo "Build with specific Python Version: ${PYTHON_VERSION}"
Expand Down
Loading