Skip to content

Commit

Permalink
chore: bump minimal Python version to 3.10 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Jan 24, 2024
1 parent b7fd7f1 commit f2303fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.10"

- name: Install dependencies
run: |
Expand All @@ -49,9 +49,9 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
# - "3.11" # no compatible pysam yet
# - "3.12" # no compatible pysam yet
needs: linting
steps:
- name: Install Python via conda
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ def parse_requirements(path):
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
# We are missing bioconda pysam packages for 3.11 and 3.12, cf.
# https://github.com/bioconda/bioconda-recipes/issues/37805
# "Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
],
entry_points={"console_scripts": ("cubi-tk = cubi_tk.__main__:main",)},
description="Tooling for connecting GitLab, pipelines, and SODAR at CUBI.",
Expand Down

0 comments on commit f2303fc

Please sign in to comment.