Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Dec 16, 2024
2 parents 35d9aac + b32307c commit fdba9de
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
pass_filenames: true
types: [file, rst]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v4.6.0'
rev: 'v5.0.0'
hooks:
- id: check-merge-conflict
- repo: https://github.com/asottile/yesqa
Expand All @@ -29,12 +29,12 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: '24.4.2'
rev: '24.10.0'
hooks:
- id: black
language_version: python3 # Should be a command that runs python3
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v4.6.0'
rev: 'v5.0.0'
hooks:
- id: end-of-file-fixer
exclude: >-
Expand Down Expand Up @@ -66,12 +66,12 @@ repos:
- id: detect-private-key
exclude: ^examples/
- repo: https://github.com/asottile/pyupgrade
rev: 'v3.16.0'
rev: 'v3.19.0'
hooks:
- id: pyupgrade
args: ['--py38-plus']
- repo: https://github.com/PyCQA/flake8
rev: '7.1.0'
rev: '7.1.1'
hooks:
- id: flake8
exclude: "^docs/"
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.
2 changes: 1 addition & 1 deletion requirements/doc.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sphinx==7.4.7
sphinx==8.1.3
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 fdba9de

Please sign in to comment.