Skip to content

Commit 93bae92

Browse files
committed
Add support for Python 3.13
1 parent 5b6cb7a commit 93bae92

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

.github/workflows/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v4
88
- uses: actions/setup-python@v5
99
with:
10-
python-version: '3.12'
10+
python-version: '3.13'
1111
- name: Install dependencies
1212
run: |
1313
python3 -m pip install --upgrade pip setuptools

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.12']
11+
python-version: ['3.8', '3.13']
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v5

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- release_19.05
5151
include:
5252
- os: ubuntu-latest
53-
tox_env: py312
53+
tox_env: py313
5454
galaxy_version: dev
5555
# Cannot test on macOS because service containers are not supported
5656
# yet: https://github.community/t/github-actions-services-available-on-others-vms/16916

ABOUT.rst

+1-1
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.8 - 3.12
6+
- Python 3.8 - 3.13
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### BioBlend v
22

3-
* Added support for Galaxy release 24.1.
3+
* Added support for Python 3.13. Added support for Galaxy release 24.1.
44

55
### BioBlend v1.3.0 - 2024-05-12
66

README.rst

+1-1
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.8 - 3.12
18+
- Python 3.8 - 3.13
1919
- Galaxy release 19.05 and later.
2020

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

setup.cfg

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

0 commit comments

Comments
 (0)