Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/test_basic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
run: |
python3 example.py --examples ntt_kyber_1_23_45_67_m55,ntt_dilithium_12_34_56_78_m55 --timeout=300
examples_ntt_kyber_dilithium_neon_core:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-ubuntu
Expand Down
7 changes: 1 addition & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,7 @@ classifiers = [
]
requires-python = ">=3.10"
dependencies = [
"ortools==9.7.2996; python_version < '3.12'",
# ortools depends on pandas, but 9.7 does not specify it as dependency
"pandas>=2.0.3; python_version < '3.12'",
# ortools 9.7 requires protobuf<=6.31.1
"protobuf<=6.31.1; python_version < '3.12'",
"ortools==9.15.6755; python_version >= '3.12'",
"ortools==9.15.6755",
"sympy==1.14.0",
"unicorn==2.1.4",
]
Expand Down
7 changes: 1 addition & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
ortools==9.7.2996 ; python_version < "3.12"
ortools==9.15.6755 ; python_version >= "3.12"
# ortools 9.7 requires protobuf<=6.31.1
protobuf<=6.31.1 ; python_version < "3.12"
# ortools depends on pandas, but 9.7 does not specify it as dependency
pandas>=2.0.3 ; python_version < "3.12"
ortools==9.15.6755
sympy==1.14.0
unicorn==2.1.4
black==26.3.1
Expand Down
Loading