8000 Follow SPEC 0 on 2024Q1 · python-control/Slycot@6a375c8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6a375c8

Browse files
committed
Follow SPEC 0 on 2024Q1
1 parent ef404e6 commit 6a375c8

File tree

4 files changed

+14
-18
lines changed

4 files changed

+14
-18
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.23.0
4+
- numpy

.github/workflows/slycot-build-and-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,24 +57,24 @@ jobs:
5757
- 'ubuntu'
5858
- 'macos'
5959
python:
60-
- '3.8'
61-
- '3.11'
60+
- '3.10'
61+
- '3.12'
6262
bla_vendor: [ 'unset' ]
6363
include:
6464
- os: 'ubuntu'
65-
python: '3.11'
65+
python: '3.12'
6666
bla_vendor: 'Generic'
6767
- os: 'ubuntu'
68-
python: '3.11'
68+
python: '3.12'
6969
bla_vendor: 'OpenBLAS'
7070
- os: 'macos'
71-
python: '3.11'
71+
python: '3.12'
7272
bla_vendor: 'Apple'
7373
- os: 'macos'
74-
python: '3.11'
74+
python: '3.12'
7575
bla_vendor: 'Generic'
7676
- os: 'macos'
77-
python: '3.11'
77+
python: '3.12'
7878
bla_vendor: 'OpenBLAS'
7979

8080
steps:

conda-recipe/conda_build_config.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@
55
# zip_keys Python/Numpy matrix to build for
66
python:
77
- 3.10.* *_cpython
8-
- 3.11.* *_cpython
9-
# 3.12 is already building in conda-forge/slycot-feedstock, but they did not publish everything yet
10-
# - 3.12.* *_cpython
8+
- 3.12.* *_cpython
119
numpy:
12-
- 1.22
1310
- 1.23
14-
# - 1.23
11+
- 1.23
1512

1613
zip_keys:
1714
-

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = [
55
"wheel",
66
"scikit-build>=0.15",
77
"cmake>=3.14",
8-
"numpy!=1.23.0"]
8+
"numpy >= 1.23.1"]
99
build-backend = "setuptools.build_meta"
1010

1111
[project]
@@ -25,20 +25,19 @@ classifiers = [
2525
"Programming Language :: C",
2626
"Programming Language :: Fortran",
2727
"Programming Language :: Python",
28-
"Programming Language :: Python :: 3.8",
29-
"Programming Language :: Python :: 3.9",
3028
"Programming Language :: Python :: 3.10",
3129
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
3231
"Topic :: Software Development",
3332
"Topic :: Scientific/Engineering",
3433
"Operating System :: Microsoft :: Windows",
3534
"Operating System :: POSIX",
3635
"Operating System :: Unix",
3736
"Operating System :: MacOS",
3837
]
39-
requires-python = ">=3.8"
38+
requires-python = ">=3.10"
4039
dependencies = [
41-
"numpy",
40+
"numpy >= 1.23.1",
4241
]
4342
dynamic = ["version"]
4443

0 commit comments

Comments
 (0)
0