Skip to content

Commit

Permalink
Update python version to 3.11
Browse files Browse the repository at this point in the history
The most recent version on Ubuntu and Debian is `3.12`, but it does
not work with MiCall yet.
  • Loading branch information
Donaim committed Oct 24, 2024
1 parent de2b85a commit 72a46ea
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.8
python-version: 3.11
- 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.8
python-version: 3.11

- 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.8.
We have tested with Python `3.11`.

### 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.8
FROM python:3.11

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.8
From: python:3.11

%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.8,<3.9"
requires-python = ">=3.11,<3.12"
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
Expand Down

0 comments on commit 72a46ea

Please sign in to comment.