Skip to content

Commit 864dc4a

Browse files
authored
Merge pull request datalad#7585 from mslw/testbump37
Stop testing on Python 3.7
2 parents 29331c6 + 27e703e commit 864dc4a

File tree

8 files changed

+21
-14
lines changed

8 files changed

+21
-14
lines changed

.appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ environment:
168168
CODECOV_BINARY: https://uploader.codecov.io/latest/macos/codecov
169169

170170
# Test alternative Python versions
171-
- ID: Ubu20P37a
171+
- ID: Ubu20P311a
172172
# ~35min
173-
PY: 3.7
173+
PY: 3.11
174174
DTS: >
175175
datalad.cli
176176
datalad.core
@@ -183,9 +183,9 @@ environment:
183183
CODECOV_BINARY: https://uploader.codecov.io/latest/linux/codecov
184184
# system git-annex is way too old, use better one
185185
INSTALL_GITANNEX: git-annex -m deb-url --url https://datasets.datalad.org/datalad/packages/neurodebian/git-annex_8.20210903-1_amd64.deb
186-
- ID: Ubu20P37b
186+
- ID: Ubu20P311b
187187
# ~25min
188-
PY: 3.7
188+
PY: 3.11
189189
DTS: >
190190
datalad.downloaders
191191
datalad.interface

.github/workflows/benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
29-
- name: Set up Python 3.7
29+
- name: Set up Python 3.8
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.7
32+
python-version: 3.8
3333
- name: Install dependencies
3434
run: |
3535
python -m pip install --upgrade pip

.github/workflows/docbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
git config --global user.email "[email protected]"
1414
git config --global user.name "GitHub Almighty"
1515
- uses: actions/checkout@v4
16-
- name: Set up Python 3.7
16+
- name: Set up Python 3.8
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: 3.7
19+
python-version: 3.8
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.7'
19+
python-version: '3.8'
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

.github/workflows/test_crippled.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
- uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
33-
- name: Set up Python 3.7
33+
- name: Set up Python 3.8
3434
uses: actions/setup-python@v5
3535
with:
36-
python-version: 3.7
36+
python-version: 3.8
3737
- name: Install dependencies
3838
run: |
3939
python -m pip install --upgrade pip

.github/workflows/test_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
with:
2626
fetch-depth: 0
2727

28-
- name: Set up Python 3.7
28+
- name: Set up Python 3.11
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.7
31+
python-version: 3.11
3232

3333
- name: Install git-annex
3434
run: |

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: '3.7'
24+
python-version: '3.8'
2525

2626
- name: Install dependencies
2727
run: |

changelog.d/pr-7585.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
### 🧪 Tests
2+
3+
- Stop testing on Python 3.7. Switch MacOS tests to 3.11, include 3.11
4+
in Appveyor, and use 3.8 for other tests.
5+
Fixes [#7584](https://github.com/datalad/datalad/issues/7584)
6+
via [PR #7585](https://github.com/datalad/datalad/pull/7585)
7+
(by [@mslw](https://github.com/mslw))

0 commit comments

Comments
 (0)