nmhit 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nmhit-0.2.0 → nmhit-0.2.1}/.github/workflows/release.yml +5 -12
- {nmhit-0.2.0 → nmhit-0.2.1}/CMakeLists.txt +1 -1
- {nmhit-0.2.0 → nmhit-0.2.1}/PKG-INFO +1 -1
- {nmhit-0.2.0 → nmhit-0.2.1}/pyproject.toml +4 -5
- {nmhit-0.2.0 → nmhit-0.2.1}/.clang-format +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/.github/workflows/ci.yml +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/.gitignore +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/.pre-commit-config.yaml +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/.pre-commit-hooks.yaml +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/CONTRIBUTING.md +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/README.md +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/cmake/nmhit.pc.in +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/cmake/nmhitConfig.cmake.in +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/generated/Lexer.cpp +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/generated/Lexer.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/generated/Parser.cpp +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/generated/Parser.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/generated/location.hh +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/include/nmhit/BraceExpr.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/include/nmhit/Node.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/include/nmhit/TypeRegistry.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/include/nmhit/nmhit.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/python/nmhit/__init__.py +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/python/nmhit/_cli.py +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/python/nmhit/py.typed +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/python/src/_nmhit.cpp +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/python/tests/test_nmhit.py +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/src/BraceExpr.cpp +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/src/Lexer.l +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/src/Node.cpp +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/src/ParseDriver.h +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/src/Parser.y +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/tests/CMakeLists.txt +0 -0
- {nmhit-0.2.0 → nmhit-0.2.1}/tests/test_hit.cpp +0 -0
|
@@ -18,21 +18,14 @@ jobs:
|
|
|
18
18
|
steps:
|
|
19
19
|
- uses: actions/checkout@v4
|
|
20
20
|
|
|
21
|
-
- name: Set up QEMU (Linux arm64 cross-build)
|
|
22
|
-
if: matrix.os == 'ubuntu-24.04'
|
|
23
|
-
uses: docker/setup-qemu-action@v3
|
|
24
|
-
with:
|
|
25
|
-
platforms: arm64
|
|
26
|
-
|
|
27
21
|
- name: Build wheels
|
|
28
|
-
uses: pypa/cibuildwheel@v2.
|
|
22
|
+
uses: pypa/cibuildwheel@v2.23
|
|
29
23
|
env:
|
|
30
|
-
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
|
|
24
|
+
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
|
|
31
25
|
CIBW_SKIP: "*-musllinux* *-manylinux_i686"
|
|
32
|
-
CIBW_ARCHS_LINUX: "x86_64
|
|
33
|
-
CIBW_ARCHS_MACOS: "x86_64
|
|
34
|
-
CIBW_MANYLINUX_X86_64_IMAGE:
|
|
35
|
-
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
|
|
26
|
+
CIBW_ARCHS_LINUX: "x86_64"
|
|
27
|
+
CIBW_ARCHS_MACOS: "x86_64"
|
|
28
|
+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
|
|
36
29
|
CIBW_TEST_REQUIRES: "pytest"
|
|
37
30
|
CIBW_TEST_COMMAND: "pytest {project}/python/tests/ -v"
|
|
38
31
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cmake_minimum_required(VERSION 3.20)
|
|
2
2
|
# Keep this version in sync with [project] version in pyproject.toml.
|
|
3
|
-
project(neml2-hit VERSION 0.2.
|
|
3
|
+
project(neml2-hit VERSION 0.2.1 LANGUAGES CXX)
|
|
4
4
|
|
|
5
5
|
set(CMAKE_CXX_STANDARD 17)
|
|
6
6
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nmhit"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1" # Keep in sync with VERSION in CMakeLists.txt.
|
|
8
8
|
description = "Python bindings for the nmhit NEML2-flavored HIT parser"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
@@ -32,16 +32,15 @@ wheel.packages = ["python/nmhit"]
|
|
|
32
32
|
# no-ops on earlier Pythons, so cp39-abi3 would still produce a cpython-39 suffix.
|
|
33
33
|
|
|
34
34
|
[tool.cibuildwheel]
|
|
35
|
-
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
|
|
35
|
+
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
|
|
36
36
|
skip = "*-musllinux* *-manylinux_i686"
|
|
37
37
|
test-requires = ["pytest"]
|
|
38
38
|
test-command = "pytest {project}/python/tests/ -v"
|
|
39
39
|
|
|
40
40
|
[tool.cibuildwheel.linux]
|
|
41
|
-
archs = ["x86_64"
|
|
41
|
+
archs = ["x86_64"]
|
|
42
42
|
manylinux-x86_64-image = "manylinux_2_28"
|
|
43
|
-
manylinux-aarch64-image = "manylinux_2_28"
|
|
44
43
|
|
|
45
44
|
[tool.cibuildwheel.macos]
|
|
46
|
-
archs = ["x86_64"
|
|
45
|
+
archs = ["x86_64"]
|
|
47
46
|
environment = {MACOSX_DEPLOYMENT_TARGET = "10.15"} # std::filesystem requires 10.15+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|