Skip to content

Commit 7e619ac

Browse files
committed
Add support for Python 3.14
1 parent 969e4dd commit 7e619ac

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

.github/workflows/lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.9', '3.13']
11+
python-version: ['3.9', '3.14']
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
17+
allow-prereleases: true
1718
- name: Install tox
1819
run: python -m pip install 'tox>=1.8.0'
1920
- name: Lint

.github/workflows/test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
galaxy_version: release_19.05
111111
galaxy_python_version: '3.7'
112112
- os: ubuntu-latest
113-
tox_env: py313
113+
tox_env: py314
114114
galaxy_version: dev
115115
galaxy_python_version: '3.9'
116116
# Cannot test on macOS because service containers are not supported
@@ -133,6 +133,7 @@ jobs:
133133
uses: actions/setup-python@v5
134134
with:
135135
python-version: ${{ steps.get_bioblend_python_version.outputs.bioblend_python_version }}
136+
allow-prereleases: true
136137
- name: Install tox
137138
run: |
138139
python3 -m pip install --upgrade pip setuptools

ABOUT.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ interacting with the `Galaxy`_ API.
33

44
BioBlend is supported and tested on:
55

6-
- Python 3.9 - 3.13
6+
- Python 3.9 - 3.14
77
- Galaxy release 19.05 and later.
88

99
BioBlend's goal is to make it easier to script and automate the running of

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## BioBlend v
2+
3+
* Added support for Python 3.14.
4+
15
## BioBlend v1.6.0 - 2025-06-18
26

37
* Added support for Galaxy release 25.0.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BioBlend is a Python library for interacting with the `Galaxy`_ API.
1515

1616
BioBlend is supported and tested on:
1717

18-
- Python 3.9 - 3.13
18+
- Python 3.9 - 3.14
1919
- Galaxy release 19.05 and later.
2020

2121
Full docs are available at https://bioblend.readthedocs.io/ with a quick library

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers =
2626
Programming Language :: Python :: 3.11
2727
Programming Language :: Python :: 3.12
2828
Programming Language :: Python :: 3.13
29+
Programming Language :: Python :: 3.14
2930
Topic :: Scientific/Engineering :: Bio-Informatics
3031
Typing :: Typed
3132
description = Library for interacting with the Galaxy API

0 commit comments

Comments
 (0)