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
1 change: 1 addition & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- pydevd
- pyinstrument
- PyYAML
- scipy
# - shapely
- tornado
- yappi
Expand Down
3 changes: 2 additions & 1 deletion meson-cross-roborio.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ cpp = 'arm-frc2025-linux-gnueabi-g++'
ar = 'arm-frc2025-linux-gnueabi-ar'
strip = 'arm-frc2025-linux-gnueabi-strip'
gfortran = 'arm-frc2025-linux-gnueabi-gfortran'
fortran = 'arm-frc2025-linux-gnueabi-gfortran'

# requires pkgconf to be installed in build-pip
pkg-config = '/build/venv/build/bin/pkgconf'
Expand All @@ -17,4 +18,4 @@ cpu = 'armv7l'
endian = 'little'

[properties]
longdouble_format = 'IEEE_DOUBLE_LE'
longdouble_format = 'IEEE_DOUBLE_LE'
17 changes: 14 additions & 3 deletions packages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,20 @@ build_pip_requirements = [
"Cython>=3.0",
]

# TODO
# [packages.scipy]
# version = "1.5.3"
[packages.scipy]
version = "1.16.3"
build_pip_requirements = [
"meson-python>=0.18.0",
"Cython>=3.0.8",
"pybind11>=2.13.2",
"pythran>=0.14.0",
"numpy",
"ninja",
"pkgconf",
]
pip_args = [
"--config-settings=setup-args=--cross-file=meson-cross-roborio.txt",
]

# TODO seems to be broken for 2026
# [packages.shapely]
Expand Down
Loading