From e0f5febbfe23df85f33ae5133dbb4ec3853f3892 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Fri, 8 Nov 2024 11:05:01 -0600 Subject: [PATCH] chore: undo 8bbc8a69ff6310a447b3ea39282becca9f9c9a7e, set awkward-cpp python_requires, and bump version numbers --- awkward-cpp/pyproject.toml | 8 +++----- cibuildwheel.toml | 1 - pyproject.toml | 4 ++-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/awkward-cpp/pyproject.toml b/awkward-cpp/pyproject.toml index 6e6bbb149a..04d4682310 100644 --- a/awkward-cpp/pyproject.toml +++ b/awkward-cpp/pyproject.toml @@ -7,10 +7,9 @@ build-backend = "scikit_build_core.build" [project] name = "awkward_cpp" -version = "41" +version = "42" dependencies = [ - "numpy>=1.18.0", - "importlib_resources;python_version < \"3.9\"" + "numpy>=1.18.0" ] readme = "README.md" description = "CPU kernels and compiled extensions for Awkward Array" @@ -33,7 +32,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -46,7 +44,7 @@ classifiers = [ "Topic :: Utilities", ] license = {text = "BSD-3-Clause"} -requires-python = ">=3.8" +requires-python = ">=3.9" [project.urls] Homepage = "https://github.com/scikit-hep/awkward-1.0" diff --git a/cibuildwheel.toml b/cibuildwheel.toml index f3f0dc2094..91827c69a0 100644 --- a/cibuildwheel.toml +++ b/cibuildwheel.toml @@ -9,7 +9,6 @@ pytest {project}/tests \ {package}/tests-spec-explicit """ skip = [ - "*p38*", "pp*win*", "pp*-manylinux_i686", ] diff --git a/pyproject.toml b/pyproject.toml index fa8c6cd08c..e89c7b08e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "hatchling.build" [project] name = "awkward" -version = "2.7.0" +version = "2.7.1" description = "Manipulate JSON-like data with NumPy-like idioms." license = { text = "BSD-3-Clause" } requires-python = ">=3.9" @@ -40,7 +40,7 @@ classifiers = [ "Topic :: Utilities", ] dependencies = [ - "awkward_cpp==41", + "awkward_cpp==42", "importlib_metadata>=4.13.0;python_version < \"3.12\"", "numpy>=1.18.0", "packaging",