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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
CARGO_TARGET_DIR: "/host${{ runner.temp }}/cargo_build"
CARGO_HOME: "/host${{ runner.temp }}/cargo_home"
CIBW_PLATFORM: "linux"
CIBW_ENVIRONMENT_LINUX: "SCALIB_NTL=1"
CIBW_ENVIRONMENT_LINUX: "SCALIB_NTL=1 RUST_BACKTRACE=1 SCALIB_X86_64_V3=1"
- uses: actions/upload-artifact@v4
with:
name: dist-wheel_linux-${{ matrix.arch }}
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:

build_wheel_windows:
name: Build wheel on Windows
runs-on: windows-2019
runs-on: windows-2025
strategy:
fail-fast: false
matrix:
Expand All @@ -182,6 +182,7 @@ jobs:
CIBW_PLATFORM: "windows"
CIBW_TEST_COMMAND: pytest {project}/tests
CIBW_TEST_REQUIRES: "-r tests/requirements.txt"
CIBW_ENVIRONMENT: "RUST_BACKTRACE=1 SCALIB_X86_64_V3=1"
- uses: actions/upload-artifact@v4
with:
name: dist-wheel_windows-${{ matrix.arch }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Changelog
Not released
------------

v0.6.4 (2025/06/24)
-------------------

* Fix build system (no more unwanted packages) and fix CI configuration (#203).

v0.6.3 (2025/05/06)
-------------------

Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ Repository = "https://github.com/simple-crypto/SCALib.git"
Issues = "https://github.com/simple-crypto/SCALib/issues"
Changelog = "https://github.com/simple-crypto/SCALib/blob/main/CHANGELOG.rst"

[tool.setuptools.packages.find]
exclude = ["scalib_ext*"]
where = ["src"]
namespaces = false


[tool.setuptools_scm]
version_file = "src/scalib/version.py"
Expand All @@ -46,6 +51,3 @@ build = ["cp310-*"]
skip = ["*musllinux*"]
archs = "auto64"
environment-pass = ["CARGO_TARGET_DIR", "CARGO_HOME"]
[tool.cibuildwheel.environment]
RUST_BACKTRACE = "full"
SCALIB_X86_64_V3 = "1"
Loading