Skip to content

Commit

Permalink
Merge pull request #68 from youtux/bump-python
Browse files Browse the repository at this point in the history
Require python 3.9
  • Loading branch information
youtux authored Nov 3, 2024
2 parents 8fe434d + 67181bb commit 03161de
Show file tree
Hide file tree
Showing 6 changed files with 483 additions and 542 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ jobs:
strategy:
matrix:
include:
- python-version: "3.7"
toxfactor: py37
ignore-typecheck-outcome: false
- python-version: "3.8"
toxfactor: py38
ignore-typecheck-outcome: false
- python-version: "3.9"
toxfactor: py39
ignore-typecheck-outcome: false
Expand All @@ -26,9 +20,12 @@ jobs:
- python-version: "3.11"
toxfactor: py311
ignore-typecheck-outcome: false
- python-version: "3.12-dev"
- python-version: "3.12"
toxfactor: py312
ignore-typecheck-outcome: false
- python-version: "3.13"
toxfactor: py313
ignore-typecheck-outcome: false

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 1b2427a2b785cc4aac97c19bb4b9a0de063f9547 # frozen: 24.10.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: c235f5e450b4b84e58d114ed4c589cbf454175a3 # frozen: 5.13.2
hooks:
- id: isort
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # frozen: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/asottile/pyupgrade
rev: v3.18.0
rev: 19364aa1b2ac289ce75e6bbe93994f7b4b9425f6 # frozen: v3.19.0
hooks:
- id: pyupgrade
args: [--py37-plus]
args: [--py39-plus]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed

- Dropped support for python 3.7 and 3.8. Supported python versions: 3.9, 3.10, 3.11, 3.12, 3.13

## [0.4.1] - 2023-03-12

### Fixed
Expand Down
Loading

0 comments on commit 03161de

Please sign in to comment.