From 17250648dbdc5309d6448aba40031dc07e8026b4 Mon Sep 17 00:00:00 2001 From: tang zhixiong Date: Sat, 14 Feb 2026 00:19:08 +0800 Subject: [PATCH 1/2] don't merge x86 & arm --- pyproject.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 208d607..cfed4c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,18 +4,17 @@ build-backend = "scikit_build_core.build" [project] name = "pocket_numpy" -version = "0.0.1" +version = "0.0.2" description = "pocketpy with numpy" readme = "README.md" authors = [ { name = "tzx", email = "dvorak4tzx@gmail.com" }, ] -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -31,14 +30,11 @@ Homepage = "https://github.com/cubao/xtensor-numpy" test = ["pytest"] [tool.scikit-build] -wheel.expand-macos-universal-tags = true +wheel.expand-macos-universal-tags = false [tool.pytest.ini_options] minversion = "6.0" testpaths = ["tests"] [tool.cibuildwheel] -test-command = "pytest {project}/tests" -test-extras = ["test"] -test-skip = ["*universal2:arm64"] build-verbosity = 1 From 1c0d00be5084fae9f1e6ad1d8d4edbdf923c7a04 Mon Sep 17 00:00:00 2001 From: tang zhixiong Date: Sat, 14 Feb 2026 00:21:07 +0800 Subject: [PATCH 2/2] update docs --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0b0e17..36ab717 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,23 @@ -# How to build +# How to install & test (for user) + +``` +python3 -m pip install pocket-numpy +python3 -m pocket_numpy --help +python3 -m pocket_numpy tests/test_numpy.py +``` + +--- + +# How to build (for dev) ``` make build ``` -# How to test +# How to test (for dev) ``` make test ``` + +See all available commands in `Makefile`.