From 86b18fd7ad00fa760d11016eb80b12f60e101643 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Thu, 19 Dec 2024 05:22:35 -0600 Subject: [PATCH] Keep support for py39 and latest numpy 1.x for one release --- .github/workflows/ci.yml | 2 +- pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index add6753..4b02be3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" diff --git a/pyproject.toml b/pyproject.toml index f8efb9b..8b2ac03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}, @@ -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", @@ -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",