Skip to content

Commit

Permalink
Merge branch 'trunk' into typing
Browse files Browse the repository at this point in the history
  • Loading branch information
glyph committed May 3, 2023
2 parents a04644f + 773256b commit efebdff
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,7 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Expand Up @@ -12,13 +12,13 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.8'

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key:
Expand All @@ -38,13 +38,13 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: "3.11"

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key:
Expand Down Expand Up @@ -75,13 +75,13 @@ jobs:
experimental: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/361.removal.rst
@@ -0,0 +1 @@
Support for Python 3.7, which reaches end of support 2023-06-27, is deprecated. This is the last release with support for Python 3.7.

0 comments on commit efebdff

Please sign in to comment.