Skip to content

Commit fb30ade

Browse files
committed
Deprecate Python 3.9 support
1 parent f5d8f51 commit fb30ade

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/build_and_test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-22.04, macos-latest]
20-
python-version: ["3.9", "3.10", "3.11"]
20+
python-version: ["3.10", "3.11", "3.12"]
2121
exclude:
22-
- os: macos-latest
23-
python-version: '3.9'
2422
- os: macos-latest
2523
python-version: '3.10'
2624
name: "Core, Python ${{ matrix.python-version }}, ${{ matrix.os }}"

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ authors = [
2525
]
2626

2727
# Required Python version and dependencies
28-
requires-python = ">=3.9"
28+
requires-python = ">=3.10"
2929
dependencies = [
30-
"fractal-tasks-core==1.3.4","ngio==0.1.4",
30+
"fractal-tasks-core==1.4.0","ngio==0.1.4",
3131
]
3232

3333
# Optional dependencies (e.g. for `pip install -e ".[dev]"`, see

0 commit comments

Comments
 (0)