Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from EOLed 3.8 to 3.9 #214

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading