Skip to content

Commit

Permalink
Remove support for Python 3.7 (#1099)
Browse files Browse the repository at this point in the history
* Remove support for Python 3.7

* Specify settings for docs build
  • Loading branch information
fepegar authored Jul 25, 2023
1 parent 07a1b06 commit a4b231e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
exclude:
- os: macos-latest
python-version: '3.7'
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: '3.11'

- os: windows-latest
python-version: '3.7'
- os: windows-latest
python-version: '3.8'
- os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ repos:
rev: v3.9.0
hooks:
- id: pyupgrade
args: ['--py37-plus', '--keep-runtime-typing']
args: ['--py38-plus', '--keep-runtime-typing']

- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.4.0
Expand Down
5 changes: 5 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ formats:
- htmlzip
- pdf

build:
os: ubuntu-22.04
tools:
python: "3"

python:
install:
- method: pip
Expand Down

0 comments on commit a4b231e

Please sign in to comment.