Skip to content

Commit

Permalink
Add support for Galaxy release 24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Mar 7, 2024
1 parent 639c4df commit a54a32f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
tox_env: [py38]
galaxy_version:
- dev
- release_24.0
- release_23.2
- release_23.1
- release_23.0
Expand Down Expand Up @@ -77,7 +78,7 @@ jobs:
id: get_galaxy_python_version
run: |
case ${{ matrix.galaxy_version }} in
release_19.05 | release_19.09 | release_20.0* )
release_19.05 | release_19.09 | release_20.0? )
# The minimum Python version supported by the 19.05 and 19.09
# releases is 2.7, but virtualenv dropped support for creating
# Python <3.7 environments in v20.22.0 .
Expand All @@ -87,15 +88,15 @@ jobs:
# https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
galaxy_python_version=3.7
;;
release_21.0* )
release_21.0? )
# The minimum Python supported version by these releases is 3.6,
# but same as above.
galaxy_python_version=3.7
;;
release_22.0* | release_23.* )
release_22.0? | release_23.? )
galaxy_python_version=3.7
;;
dev )
release_24.? | dev )
galaxy_python_version=3.8
;;
esac
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### BioBlend v

* Dropped support for Python 3.7. Added support for Python 3.12. Added support
for Galaxy release 23.2.
for Galaxy releases 23.2 and 24.0.

* Parameters after ``password`` in the ``__init__()`` method of the
``GalaxyClient``, ``GalaxyInstance`` and ``ToolShedInstance`` classes are now
Expand Down

0 comments on commit a54a32f

Please sign in to comment.