Skip to content

Commit

Permalink
Merge pull request datalad#7585 from mslw/testbump37
Browse files Browse the repository at this point in the history
Stop testing on Python 3.7
  • Loading branch information
yarikoptic authored Apr 27, 2024
2 parents 29331c6 + 27e703e commit 864dc4a
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ environment:
CODECOV_BINARY: https://uploader.codecov.io/latest/macos/codecov

# Test alternative Python versions
- ID: Ubu20P37a
- ID: Ubu20P311a
# ~35min
PY: 3.7
PY: 3.11
DTS: >
datalad.cli
datalad.core
Expand All @@ -183,9 +183,9 @@ environment:
CODECOV_BINARY: https://uploader.codecov.io/latest/linux/codecov
# system git-annex is way too old, use better one
INSTALL_GITANNEX: git-annex -m deb-url --url https://datasets.datalad.org/datalad/packages/neurodebian/git-annex_8.20210903-1_amd64.deb
- ID: Ubu20P37b
- ID: Ubu20P311b
# ~25min
PY: 3.7
PY: 3.11
DTS: >
datalad.downloaders
datalad.interface
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Almighty"
- uses: actions/checkout@v4
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.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.7'
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_crippled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.7
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.11

- name: Install git-annex
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: '3.8'

- name: Install dependencies
run: |
Expand Down
7 changes: 7 additions & 0 deletions changelog.d/pr-7585.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### 🧪 Tests

- Stop testing on Python 3.7. Switch MacOS tests to 3.11, include 3.11
in Appveyor, and use 3.8 for other tests.
Fixes [#7584](https://github.com/datalad/datalad/issues/7584)
via [PR #7585](https://github.com/datalad/datalad/pull/7585)
(by [@mslw](https://github.com/mslw))

0 comments on commit 864dc4a

Please sign in to comment.