Skip to content

Commit

Permalink
Drop Python 3.7 support (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Apr 24, 2024
1 parent 39f2aff commit 71718f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-somacore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"scipy",
"typing-extensions>=4.1", # For LiteralString
]
requires-python = "~=3.7"
requires-python = "~=3.8"
urls = { repository = "https://github.com/single-cell-data/SOMA.git" }
classifiers = ["License :: OSI Approved :: MIT License"]

Expand Down
2 changes: 1 addition & 1 deletion python-spec/update-requirements-txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ trap "trash $TEMPDIR" EXIT
# The version of Python we want to run lints under.
LINTVER=3.8

for PYVER in 3.7 3.8 3.9 3.10 3.11 3.12; do
for PYVER in 3.8 3.9 3.10 3.11 3.12; do
CONDIR="$TEMPDIR/py-$PYVER"
conda create -y -p "$CONDIR" "python=$PYVER"
(
Expand Down

0 comments on commit 71718f5

Please sign in to comment.