Skip to content

Commit

Permalink
drop Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
daavoo committed Jul 8, 2022
1 parent 70e2da2 commit 99b0641
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: '3.7'
python-version: '3.8'

- name: Upgrade pip and nox
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
pyv: ['3.7', '3.8', '3.9', '3.10']
pyv: ['3.8', '3.9', '3.10']
include:
- os: ubuntu-latest
pyv: 'pypy3.8'
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Request features on the `Issue Tracker`_.
How to set up your development environment
------------------------------------------

You need Python 3.7+ and the following tools:
You need Python 3.8+ and the following tools:

- Nox_

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
locations = "src", "tests"


@nox.session(python=["3.7", "3.8", "3.9", "3.10", "pypy3.8", "pypy3.9"])
@nox.session(python=["3.8", "3.9", "3.10", "pypy3.8", "pypy3.9"])
def tests(session: nox.Session) -> None:
session.install(".[tests]")
session.run(
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ authors = Iterative
maintainer_email = [email protected]
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Development Status :: 1 - Planning

[options]
python_requires = >=3.7
python_requires = >=3.8
zip_safe = False
package_dir=
=src
Expand Down

0 comments on commit 99b0641

Please sign in to comment.