Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b24ec90
test: use cython==3.0.0a11 to build in CI
oscarbenjamin Dec 14, 2022
5fe55f3
fix: add __radd__ etc to fmpz
oscarbenjamin Dec 14, 2022
12885b6
test: also use cython 3 on Windows
oscarbenjamin Dec 14, 2022
3bacb07
fix: remove redundant paths in dunder methods
oscarbenjamin Apr 20, 2023
978696a
fix: add __rdunder__ methods for fmpq and nmod
oscarbenjamin Apr 20, 2023
1556939
fix: add __rdunder__ fmpz_mat, fmpq_mat and nmp_mat
oscarbenjamin Aug 3, 2023
19d7526
fix: add __rdunder__ fmpz_poly, fmpq_poly and nmp_poly
oscarbenjamin Apr 21, 2023
4d9175b
fix: add __rdunder__ methods fmpz_series, fmpq_series
oscarbenjamin Apr 21, 2023
3c03077
fix: add __rdunder__ methods for arb and acb
oscarbenjamin Apr 21, 2023
fcda89f
Use cython 3.0.0b2
oscarbenjamin Apr 21, 2023
5082c78
fix: add modulus arg to acb.__rpow__
oscarbenjamin Apr 21, 2023
5a4a2aa
fix: __rdunder__ acb_poly, acb_series, arb_poly, arb_series
oscarbenjamin Apr 21, 2023
d3c2519
Use cython==3.0.0b2 in Cirruc CI as well
oscarbenjamin Apr 21, 2023
0a8bf5c
fix: add __rdunder__ methods for acb_mat and arb_mat
oscarbenjamin Apr 21, 2023
913f69c
Add redundant type casts for older Cython
oscarbenjamin Apr 21, 2023
a390bdc
fix: fmpz_mat * nmod_mat -> nmod_mat
oscarbenjamin Aug 3, 2023
12bc215
Use GMP mirror from GitHub in CI
oscarbenjamin Aug 3, 2023
e1c0c70
Update Cython -> 3.0.0, GMP -> 6.3.0
oscarbenjamin Aug 3, 2023
d4db446
Do not apply GMP macos_arm64 patch
oscarbenjamin Aug 3, 2023
0370688
Remove version constraints for Cython
oscarbenjamin Aug 3, 2023
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
Prev Previous commit
Next Next commit
Use cython==3.0.0b2 in Cirruc CI as well
  • Loading branch information
oscarbenjamin committed Aug 3, 2023
commit d3c2519f2189799cb908cdba402cb666c2b70d6a
2 changes: 1 addition & 1 deletion bin/cibw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export CIBW_BEFORE_ALL_LINUX=bin/cibw_before_all_linux.sh
export CIBW_BEFORE_ALL_MACOS=bin/cibw_before_all_macosx_arm64.sh
export CIBW_BEFORE_ALL_WINDOWS='C:\\msys64\\usr\\bin\\bash bin/cibw_before_all_windows.sh'

export CIBW_BEFORE_BUILD='pip install numpy cython delvewheel'
export CIBW_BEFORE_BUILD='pip install numpy cython==3.0.0b2 delvewheel'
export CIBW_BEFORE_BUILD_WINDOWS='C:\\msys64\\usr\\bin\\bash bin/cibw_before_build_windows.sh'

export CIBW_REPAIR_WHEEL_COMMAND_WINDOWS='bin\cibw_repair_wheel_command_windows.bat {dest_dir} {wheel}'
Expand Down