Skip to content

Commit de3e7f4

Browse files
versions
1 parent 9816af6 commit de3e7f4

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/periodic_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212

1313
jobs:
1414
check-manifest:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
os: [ ubuntu-20.04, macos-14, windows-2022 ]
34+
os: [ ubuntu-24.04, macos-14, windows-2022 ]
3535
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
3636

3737
steps:
@@ -55,7 +55,7 @@ jobs:
5555
run: python -m pytest -n logical
5656

5757
codecov:
58-
runs-on: ubuntu-20.04
58+
runs-on: ubuntu-24.04
5959

6060
steps:
6161
- uses: actions/checkout@v4

.github/workflows/pr_precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
pre-commit:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/pr_pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
os: [ ubuntu-20.04, windows-2022 ]
26+
os: [ ubuntu-24.04, windows-2022 ]
2727
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
2828
# skip python versions unless the PR has the 'full pytest actions' label
2929
pr-testing:
@@ -53,7 +53,7 @@ jobs:
5353
run: python -m pytest -n logical
5454

5555
codecov:
56-
runs-on: ubuntu-20.04
56+
runs-on: ubuntu-24.04
5757

5858
steps:
5959
- uses: actions/checkout@v4

.github/workflows/precommit_autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
pre-commit-auto-update:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
check-manifest:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414
- uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323

2424
build-project:
2525
needs: check-manifest
26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-24.04
2727

2828
steps:
2929
- uses: actions/checkout@v4
@@ -51,7 +51,7 @@ jobs:
5151

5252
strategy:
5353
matrix:
54-
os: [ ubuntu-20.04, macos-14, windows-2022 ]
54+
os: [ ubuntu-24.04, macos-14, windows-2022 ]
5555
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
5656

5757
steps:
@@ -93,7 +93,7 @@ jobs:
9393

9494
upload-wheels:
9595
needs: test-wheels
96-
runs-on: ubuntu-20.04
96+
runs-on: ubuntu-24.04
9797

9898
steps:
9999
- uses: actions/download-artifact@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies = [
5050
[project.optional-dependencies]
5151
all_extras = [
5252
"grailts",
53-
"scikit-fda>=0.7.0",
53+
"scikit-fda>=0.7.0; python_version > '3.10'",
5454
"statsmodels>=0.12.1",
5555
"wildboar",
5656
]

0 commit comments

Comments
 (0)