8000 Merge pull request #189 from bnavigator/fix-f2py-mod · python-control/Slycot@b72e6a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit b72e6a9

Browse files
authored
Merge pull request #189 from bnavigator/fix-f2py-mod
remove -m argument from f2py .pyf generation
2 parents c71e69c + 8fca11e commit b72e6a9

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/conda-env/build-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: build-env
22
dependencies:
33
- boa
4-
- numpy <1.24
4+
- numpy !=1.23.0

.github/conda-env/test-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ dependencies:
88
- pytest-cov
99
- pytest-timeout
1010
- coverage
11-
- coveralls
11+
- coveralls >= 3.3

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ requirements:
2727
- libcblas * *netlib
2828
- liblapack * *netlib
2929
- python
30-
- numpy <1.24
30+
- numpy !=1.23.0
3131
- pip
3232
- scikit-build >=0.15
3333
- setuptools >=45

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ requires = [
55
"wheel",
66
"scikit-build>=0.15",
77
"cmake>=3.14",
8-
# python-control/Slycot/issues/187
9-
"numpy<1.24"]
8+
"numpy!=1.23.0"]
109
build-backend = "setuptools.build_meta"
1110

1211
[project]

slycot/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,8 +647,7 @@ set(CMAKE_Fortran_FLAGS )
647647
add_custom_target(wrapper ALL DEPENDS ${SLICOT_FSOURCE} ${SLYCOT_FSOURCE})
648648
add_custom_command(
649649
OUTPUT _wrappermodule.c _wrapper-f2pywrappers.f
650-
COMMAND ${F2PY_EXECUTABLE} -m SLYCOT
651-
${CMAKE_CURRENT_SOURCE_DIR}/${F2PYSOURCE}
650+
COMMAND ${F2PY_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/${F2PYSOURCE}
652651
DEPENDS ${F2PYSOURCE_DEPS} ${F2PYSOURCE}
653652
)
654653

0 commit comments

Comments
 (0)
0