Skip to content

Commit 9e744e4

Browse files
committed
Remove remaining Python 3.9 CI actions
1 parent da10279 commit 9e744e4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci_pip.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@ jobs:
4848
strategy:
4949
matrix:
5050
os: [ubuntu-latest, macos-latest]
51-
python-version: ["3.9", "3.10", "3.11", "3.12"]
51+
python-version: ["3.10", "3.11", "3.12"]
5252
exclude:
53-
- os: macos-latest
54-
python-version: '3.9'
5553
- os: macos-latest
5654
python-version: '3.10'
5755
name: "Tasks, Python ${{ matrix.python-version }}, ${{ matrix.os }}"

.github/workflows/ci_poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
strategy:
6262
matrix:
63-
python-version: ["3.9", "3.10", "3.11", "3.12"]
63+
python-version: ["3.10", "3.11", "3.12"]
6464

6565
steps:
6666
- uses: actions/checkout@v4

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ poetry run pytest --ignore tests/tasks
3636

3737
The tests files are in the `tests` folder of the repository. Its structure reflects the `fractal_tasks_core` structure, with tests for the core library in the main folder and tests for `tasks` and `dev` subpckages in their own subfolders.
3838

39-
Tests are also run through GitHub Actions, with Python 3.9, 3.10 and 3.11. Note that within GitHub actions we run tests for both the `poetry`-installed and `pip`-installed versions of the code, which may e.g. have different versions of some dependencies (since `pip install` does not rely on the `poetry.lock` lockfile).
39+
Tests are also run through GitHub Actions, with Python 3.10, 3.11 and 3.12. Note that within GitHub actions we run tests for both the `poetry`-installed and `pip`-installed versions of the code, which may e.g. have different versions of some dependencies (since `pip install` does not rely on the `poetry.lock` lockfile).
4040

4141
## Documentation
4242

0 commit comments

Comments
 (0)