Skip to content

Commit 85c341d

Browse files
committed
Upgrade GitHub Actions, drop Python 3.7
1 parent 098d767 commit 85c341d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/publish.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
cache: pip
@@ -31,11 +31,11 @@ jobs:
3131
runs-on: ubuntu-latest
3232
needs: [test]
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- name: Set up Python
36-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v5
3737
with:
38-
python-version: "3.11"
38+
python-version: "3.13"
3939
cache: pip
4040
cache-dependency-path: setup.py
4141
- name: Install dependencies

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
cache: pip

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ def get_long_description():
2929
packages=["asgi_proxy"],
3030
install_requires=["httpx"],
3131
extras_require={"test": ["pytest", "pytest-asyncio", "pytest-httpx"]},
32-
python_requires=">=3.7",
32+
python_requires=">=3.8",
3333
)

0 commit comments

Comments
 (0)