nmhit 0.2.2__tar.gz → 0.3.0__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.
Files changed (34) hide show
  1. {nmhit-0.2.2 → nmhit-0.3.0}/.github/workflows/release.yml +1 -1
  2. {nmhit-0.2.2 → nmhit-0.3.0}/CMakeLists.txt +1 -1
  3. {nmhit-0.2.2 → nmhit-0.3.0}/PKG-INFO +1 -1
  4. {nmhit-0.2.2 → nmhit-0.3.0}/pyproject.toml +2 -2
  5. {nmhit-0.2.2 → nmhit-0.3.0}/.clang-format +0 -0
  6. {nmhit-0.2.2 → nmhit-0.3.0}/.github/workflows/ci.yml +0 -0
  7. {nmhit-0.2.2 → nmhit-0.3.0}/.gitignore +0 -0
  8. {nmhit-0.2.2 → nmhit-0.3.0}/.pre-commit-config.yaml +0 -0
  9. {nmhit-0.2.2 → nmhit-0.3.0}/.pre-commit-hooks.yaml +0 -0
  10. {nmhit-0.2.2 → nmhit-0.3.0}/CONTRIBUTING.md +0 -0
  11. {nmhit-0.2.2 → nmhit-0.3.0}/README.md +0 -0
  12. {nmhit-0.2.2 → nmhit-0.3.0}/cmake/nmhit.pc.in +0 -0
  13. {nmhit-0.2.2 → nmhit-0.3.0}/cmake/nmhitConfig.cmake.in +0 -0
  14. {nmhit-0.2.2 → nmhit-0.3.0}/generated/Lexer.cpp +0 -0
  15. {nmhit-0.2.2 → nmhit-0.3.0}/generated/Lexer.h +0 -0
  16. {nmhit-0.2.2 → nmhit-0.3.0}/generated/Parser.cpp +0 -0
  17. {nmhit-0.2.2 → nmhit-0.3.0}/generated/Parser.h +0 -0
  18. {nmhit-0.2.2 → nmhit-0.3.0}/generated/location.hh +0 -0
  19. {nmhit-0.2.2 → nmhit-0.3.0}/include/nmhit/BraceExpr.h +0 -0
  20. {nmhit-0.2.2 → nmhit-0.3.0}/include/nmhit/Node.h +0 -0
  21. {nmhit-0.2.2 → nmhit-0.3.0}/include/nmhit/TypeRegistry.h +0 -0
  22. {nmhit-0.2.2 → nmhit-0.3.0}/include/nmhit/nmhit.h +0 -0
  23. {nmhit-0.2.2 → nmhit-0.3.0}/python/nmhit/__init__.py +0 -0
  24. {nmhit-0.2.2 → nmhit-0.3.0}/python/nmhit/_cli.py +0 -0
  25. {nmhit-0.2.2 → nmhit-0.3.0}/python/nmhit/py.typed +0 -0
  26. {nmhit-0.2.2 → nmhit-0.3.0}/python/src/_nmhit.cpp +0 -0
  27. {nmhit-0.2.2 → nmhit-0.3.0}/python/tests/test_nmhit.py +0 -0
  28. {nmhit-0.2.2 → nmhit-0.3.0}/src/BraceExpr.cpp +0 -0
  29. {nmhit-0.2.2 → nmhit-0.3.0}/src/Lexer.l +0 -0
  30. {nmhit-0.2.2 → nmhit-0.3.0}/src/Node.cpp +0 -0
  31. {nmhit-0.2.2 → nmhit-0.3.0}/src/ParseDriver.h +0 -0
  32. {nmhit-0.2.2 → nmhit-0.3.0}/src/Parser.y +0 -0
  33. {nmhit-0.2.2 → nmhit-0.3.0}/tests/CMakeLists.txt +0 -0
  34. {nmhit-0.2.2 → nmhit-0.3.0}/tests/test_hit.cpp +0 -0
@@ -24,7 +24,7 @@ jobs:
24
24
  CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
25
25
  CIBW_SKIP: "*-musllinux* *-manylinux_i686"
26
26
  CIBW_ARCHS_LINUX: "x86_64"
27
- CIBW_ARCHS_MACOS: "x86_64"
27
+ CIBW_ARCHS_MACOS: "x86_64 arm64"
28
28
  CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
29
29
  CIBW_TEST_REQUIRES: "pytest"
30
30
  CIBW_TEST_COMMAND: "pytest {project}/python/tests/ -v"
@@ -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.2 LANGUAGES CXX)
3
+ project(neml2-hit VERSION 0.3.0 LANGUAGES CXX)
4
4
 
5
5
  set(CMAKE_CXX_STANDARD 17)
6
6
  set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nmhit
3
- Version: 0.2.2
3
+ Version: 0.3.0
4
4
  Summary: Python bindings for the nmhit NEML2-flavored HIT parser
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
4
 
5
5
  [project]
6
6
  name = "nmhit"
7
- version = "0.2.2" # Keep in sync with VERSION in CMakeLists.txt.
7
+ version = "0.3.0" # 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"
@@ -42,5 +42,5 @@ archs = ["x86_64"]
42
42
  manylinux-x86_64-image = "manylinux_2_28"
43
43
 
44
44
  [tool.cibuildwheel.macos]
45
- archs = ["x86_64"]
45
+ archs = ["x86_64", "arm64"]
46
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