Skip to content

Commit

Permalink
Drop Python 3.8 support (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Dec 16, 2024
1 parent 622fc7f commit 4e40f35
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.13
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-3.9-${{ hashFiles('requirements/*.txt') }}
key: ${{ runner.os }}-pip-3.13-${{ hashFiles('requirements/*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: make setup
Expand All @@ -37,10 +37,10 @@ jobs:
steps:
- name: Checkhout
uses: actions/checkout@v4
- name: Setup Python 3.9
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.13
- uses: actions/cache@v4
with:
path: ~/.cache/pip
Expand All @@ -55,10 +55,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10', '3.11']
pyver: ['3.9', '3.10', '3.11', '3.12', '3.13']
experimental: [false]
include:
- pyver: "3.12"
- pyver: "3.14"
experimental: true
fail-fast: true
continue-on-error: ${{ matrix.experimental }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13
- name: Install dependencies
run:
python -m pip install -U pip wheel setuptools build twine
Expand Down
1 change: 1 addition & 0 deletions CHANGES/525.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add Python 3.12 and 3.13 support.
1 change: 1 addition & 0 deletions CHANGES/525.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop Python 3.8 support.
3 changes: 3 additions & 0 deletions CHANGES/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Towncrier changelog records.

Run ``towncrier create <num>.feature`` to add a new reacord.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ classifiers =

Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13

Topic :: Software Development

[options]
python_requires = >=3.8
python_requires = >=3.9
packages = aiojobs
include_package_data = True

Expand Down

0 comments on commit 4e40f35

Please sign in to comment.