Skip to content

Commit

Permalink
Merge pull request #214 from datalad/bf-no-3.8
Browse files Browse the repository at this point in the history
Switch from EOLed 3.8 to 3.9
  • Loading branch information
yarikoptic authored Dec 3, 2024
2 parents cf21ac6 + 31fbccf commit ba621f5
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -410,10 +410,10 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Almighty"
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install ${{ matrix.version }} Datalad
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -466,10 +466,10 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Almighty"
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install ${{ matrix.version }} Datalad
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,10 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Almighty"
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install ${{ matrix.version }} Datalad
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-status.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '^3.8'
python-version: '^3.9'

- name: Install dependencies
run: python -m pip install --upgrade pip 'pip-run!=8.4' wheel
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/template/build-{{ostype}}.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -713,10 +713,10 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Almighty"

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install ${{ matrix.version }} Datalad
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools/daily-status.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
from __future__ import annotations

__python_requires__ = ">= 3.8"
__python_requires__ = ">= 3.9"
__requires__ = [
"ghreq ~= 0.2",
"ghtoken ~= 0.1",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools/dispatch-build
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import click
from ghreq import Client, make_user_agent
from ghtoken import get_ghtoken

__python_requires__ = ">= 3.8"
__python_requires__ = ">= 3.9"
__requires__ = ["click ~= 8.0", "ghreq ~= 0.2", "ghtoken ~= 0.1"]

REPO = "datalad/git-annex"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '^3.8'
python-version: '^3.9'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion clients/spec-file.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
git >=2.32
python >=3.8
python >=3.9
conda-forge::click >=8.0
conda-forge::click-loglevel >=0.2
conda-forge::pydantic >=2.0,<3
Expand Down

0 comments on commit ba621f5

Please sign in to comment.