Skip to content

Commit 08d9031

Browse files
committed
fix broken pytest and asv jobs
1 parent 91d72c2 commit 08d9031

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/pytest-remote-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
python-version: ["3.10", "3.11", "3.12", "3.13"]
6060
suffix: [''] # the alternative to "-min"
6161
include:
62-
- python-version: 3.10
62+
- python-version: "3.10"
6363
suffix: -min
6464

6565
runs-on: ubuntu-latest

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
suffix: [''] # placeholder as an alternative to "-min"
1818
include:
1919
- os: ubuntu-latest
20-
python-version: 3.10
20+
python-version: "3.10"
2121
environment-type: conda
2222
suffix: -min
2323
exclude:

benchmarks/asv.conf.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,19 @@
113113
"include": [
114114
// minimum supported versions
115115
{
116-
"python": "3.9",
116+
"python": "3.10",
117117
"build": "",
118-
"numpy": "1.19.5",
119-
"pandas": "1.3.0",
120-
"scipy": "1.6.0",
118+
"numpy": "1.21.2",
119+
"pandas": "1.3.3",
120+
"scipy": "1.7.2",
121121
// Note: these don't have a minimum in setup.py
122-
"h5py": "3.1.0",
123-
"ephem": "4.0.0.1", // first version to support py 3.9
124-
"numba": "0.53.0", // first version to support py 3.9
122+
"h5py": "3.6.0", // first version to support py 3.10
123+
"ephem": "4.1.1", // first version to support py 3.10
124+
"numba": "0.55.0", // first version to support py 3.10
125125
},
126126
// latest versions available
127127
{
128-
"python": "3.9",
128+
"python": "3.10",
129129
"build": "",
130130
"numpy": "",
131131
"pandas": "",

0 commit comments

Comments
 (0)