From 94e33efa20547de0d8e4d30027cb0e2e70a08d60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Tue, 12 Mar 2024 13:15:26 +0100 Subject: [PATCH] REL: prepare release 1.2.0b1 --- docs/conf.py | 4 ++-- pyproject.toml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ef613aa..982c801 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # the built documents. # # The short X.Y version. -version = "1.1.0" +version = "1.2" # The full version, including alpha/beta/rc tags. -release = "1.1.0rc2" +release = "1.2.0b1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 71d3b05..7068a3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,12 +2,12 @@ requires = [ "setuptools>=61.2", "Cython>=3.0", - "numpy>=1.25, <2.0", + "numpy>=2.0.0b1", ] [project] name = "ewah_bool_utils" -version = "1.1.0" +version = "1.2.0b1" description = "EWAH Bool Array utils for yt" authors = [ { name = "Matthew Turk" }, @@ -18,8 +18,7 @@ requires-python =">=3.9" dependencies = [ # match the absolute oldest version of numpy with *any* # level of support for our minimal Python requirement - # https://github.com/scipy/oldest-supported-numpy/issues/76#issuecomment-1628865694 - "numpy>=1.19.3", + "numpy>=1.19.3, <3", ] classifiers = [ "Intended Audience :: Developers",