Skip to content

Commit

Permalink
Update python to version 3.12
Browse files Browse the repository at this point in the history
This is the version used on current Ubuntu and Debian.
  • Loading branch information
Donaim committed Oct 26, 2024
1 parent ac0b828 commit bc7e6fe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.12
- run: mkdir -p ~/bin
- run: echo ~/bin >> $GITHUB_PATH

Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.12

- uses: actions/setup-go@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Check that Python is already installed.

python --version

We have tested with Python `3.11`.
We have tested with Python `3.12`.

### BaseSpace
Set up the [native apps virtual machine][bsvm], and configure a shared folder
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# If you omit the `--target` tag altogether, `docker build` will build
# the development image.

FROM python:3.11
FROM python:3.12

MAINTAINER BC CfE in HIV/AIDS https://github.com/cfe-lab/MiCall

Expand Down
2 changes: 1 addition & 1 deletion Singularity
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generate the Singularity container to run MiCall on Kive.
Bootstrap: docker
From: python:3.11
From: python:3.12

%help
MiCall maps all the reads from a sample against a set of reference
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ authors = [
license = {text = "AGPL-3.0"}
license-files = { paths = ["LICENSE.txt"] }
readme = "README.md"
requires-python = ">=3.11,<3.12"
requires-python = ">=3.12,<3.13"
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
Expand Down

0 comments on commit bc7e6fe

Please sign in to comment.