Skip to content

Commit

Permalink
Add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Oct 8, 2024
1 parent 5b6cb7a commit 93bae92
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
python-version: ['3.8', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- release_19.05
include:
- os: ubuntu-latest
tox_env: py312
tox_env: py313
galaxy_version: dev
# Cannot test on macOS because service containers are not supported
# yet: https://github.community/t/github-actions-services-available-on-others-vms/16916
Expand Down
2 changes: 1 addition & 1 deletion ABOUT.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ interacting with the `Galaxy`_ API.

BioBlend is supported and tested on:

- Python 3.8 - 3.12
- Python 3.8 - 3.13
- Galaxy release 19.05 and later.

BioBlend's goal is to make it easier to script and automate the running of
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### BioBlend v

* Added support for Galaxy release 24.1.
* Added support for Python 3.13. Added support for Galaxy release 24.1.

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

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ BioBlend is a Python library for interacting with the `Galaxy`_ API.

BioBlend is supported and tested on:

- Python 3.8 - 3.12
- Python 3.8 - 3.13
- Galaxy release 19.05 and later.

Full docs are available at https://bioblend.readthedocs.io/ with a quick library
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering :: Bio-Informatics
Typing :: Typed
description = Library for interacting with the Galaxy API
Expand Down

0 comments on commit 93bae92

Please sign in to comment.