Skip to content

Commit

Permalink
build: require >= Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma committed Jul 11, 2024
1 parent 8a45881 commit 259ea14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
db_url: ["http://localhost:8000", "postgres://postgres:postgres@localhost:5432/gene_normalizer_test"]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']
services:
postgres:
image: postgres:14
Expand Down
4 changes: 2 additions & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Requirements
++++++++++++

* A UNIX-like environment (e.g. MacOS, WSL, Ubuntu)
* Python 3.8+
* Python 3.10+
* A recent version of PostgreSQL (ideally at least 11+)

Package installation
Expand Down Expand Up @@ -93,7 +93,7 @@ Requirements
++++++++++++

* A UNIX-like environment (e.g. MacOS, WSL, Ubuntu) with superuser permissions
* Python 3.8+
* Python 3.10+
* A recent version of PostgreSQL (ideally at least 11+), if using PostgreSQL as the database backend
* An available Java runtime (version 8.x or newer), or Docker Desktop, if using DynamoDB as the database backend

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
requires-python = ">=3.10"
description = "VICC normalization routines for genes"
license = {file = "LICENSE"}
dependencies = [
Expand Down

0 comments on commit 259ea14

Please sign in to comment.