Skip to content

Commit

Permalink
gh-actions 6.1: Python 3.10 plus.
Browse files Browse the repository at this point in the history
And update to latest versions of the actions.
Remove `versions:python38`.
  • Loading branch information
mauritsvanrees committed Mar 19, 2024
1 parent 9b005b4 commit afc5964
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 21 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
matrix:
python-version:
# Use the oldest supported Python version, as that may pull in more versions.
- "3.8"
- "3.10"
runs-on: ubuntu-latest
steps:
- name: locale
# needed for CMFPlone testUnicodeSplitter test
run: |
sudo locale-gen nl_NL@euro
sudo update-locale
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -27,7 +27,7 @@ jobs:
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
eggs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ecosystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
- "3.10"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -21,7 +21,7 @@ jobs:
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
eggs
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/run-buildout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand All @@ -18,9 +16,9 @@ jobs:
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -29,7 +27,7 @@ jobs:
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
eggs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/versioncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.10"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -26,7 +26,7 @@ jobs:
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
eggs
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
./bin/versioncheck -pnNbo versions.html
- name: Upload versions.html
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: versions-${{ matrix.python-version }}
path: versions.html
4 changes: 0 additions & 4 deletions versions.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,6 @@ webresource = 1.2
wrapt = 1.16.0
wsproto = 1.2.0

[versions:python38]
backports.zoneinfo = 0.2.1
pkgutil-resolve-name = 1.3.10

[versionannotations]
# keep this alphabetical please
prompt-toolkit =
Expand Down

0 comments on commit afc5964

Please sign in to comment.