Skip to content

Commit

Permalink
Keep support for py39 and latest numpy 1.x for one release
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Dec 19, 2024
1 parent 915578d commit 86b18fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [ "3.10", "3.11", "3.12" ]
python-version: [ "3,9", "3.10", "3.11", "3.12" ]
include:
- os: windows-latest
python-version: "3.12"
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "cooler"
version = "0.10.2"
description = "Sparse binary format for genomic interaction matrices."
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Nezar Abdennur", email = "nabdennur@gmail.com"},
Expand All @@ -29,7 +29,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -39,7 +38,7 @@ classifiers = [
readme = "README.md"

dependencies = [
"numpy>=2.0",
"numpy>=1.26,<3",
"scipy>=0.16",
"pandas>1.5",
"h5py>=2.5",
Expand Down

0 comments on commit 86b18fd

Please sign in to comment.