Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ src/hyperscan/

tests/ # pytest test suite
examples/ # Usage examples & benchmarks
build_tools/ # Cross-platform build scripts
cmake/ # CMake configuration
```

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
fi

RESULT=1
echo "$CHANGED_FILES" | grep -q -E '^(src/hyperscan/|README.md|CMakeLists.txt|pyproject.toml|MANIFEST.in|cmake/|build_tools/)' || RESULT=$?
echo "$CHANGED_FILES" | grep -q -E '^(src/hyperscan/|README.md|CMakeLists.txt|pyproject.toml|MANIFEST.in|cmake/)' || RESULT=$?

if [[ "$RESULT" -eq 0 ]]; then
echo "should_build=true" >> "$GITHUB_OUTPUT"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
echo "${CHANGED_FILES}"

CHANGES=0
echo "${CHANGED_FILES}" | grep -c -E '^(src/hyperscan/|README.md|CMakeLists.txt|pyproject.toml|MANIFEST.in|cmake/|build_tools/)' || CHANGES=$?
echo "${CHANGED_FILES}" | grep -c -E '^(src/hyperscan/|README.md|CMakeLists.txt|pyproject.toml|MANIFEST.in|cmake/)' || CHANGES=$?

if [[ "$CHANGES" -gt 0 ]]; then
# The last commit already triggered a build, no need to force
Expand Down
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ parts/
sdist/
var/
wheels/
!build_tools/wheels
share/python-wheels/
*.egg-info/
.installed.cfg
Expand Down Expand Up @@ -171,9 +170,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Windows build artifacts that should not be version controlled.
/build_tools/windows/*.zip
/build_tools/windows/*.tar.*
/build_tools/windows/hyperscan

github_ci_*
1 change: 0 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ src/hyperscan/

tests/ # pytest test suite
examples/ # Usage examples & benchmarks
build_tools/ # Cross-platform build scripts
cmake/ # CMake configuration
```

Expand Down
57 changes: 0 additions & 57 deletions build_tools/macos/build_hyperscan.sh

This file was deleted.

9 changes: 0 additions & 9 deletions build_tools/wheels/before_test.sh

This file was deleted.

11 changes: 0 additions & 11 deletions build_tools/wheels/build_wheels.sh

This file was deleted.

10 changes: 0 additions & 10 deletions build_tools/wheels/test_wheels.sh

This file was deleted.

10 changes: 0 additions & 10 deletions build_tools/windows/Dockerfile

This file was deleted.

123 changes: 0 additions & 123 deletions build_tools/windows/build.sh

This file was deleted.

73 changes: 0 additions & 73 deletions build_tools/windows/windows_install_instructions.md

This file was deleted.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ version = ">=3.31"
[tool.cibuildwheel]
build-frontend = "build[uv]"
test-command = "pytest --pyargs {package}/tests -vvv"
# test-command = "bash {project}/build_tools/wheels/test_wheels.sh {project}"
test-requires = ["pytest>=7.0", "pytest-mock"]
# Will avoid testing on emulated architectures and macOS Apple silicon
test-skip = "*-*linux_{ppc64le,s390x} *-macosx_arm64"
Expand Down
Loading