drop py37 support (#104)

This commit is contained in:
Paul Robinson
2023-10-04 15:36:57 -06:00
committed by GitHub
parent 0065691db7
commit 82425694f6
3 changed files with 4 additions and 21 deletions

View File

@ -74,12 +74,6 @@ jobs:
environment: environment:
TOXENV: docs TOXENV: docs
py37-core:
<<: *common
docker:
- image: cimg/python:3.7
environment:
TOXENV: py37-core
py38-core: py38-core:
<<: *common <<: *common
docker: docker:
@ -130,12 +124,6 @@ jobs:
environment: environment:
TOXENV: py311-lint TOXENV: py311-lint
py37-wheel:
<<: *common
docker:
- image: cimg/python:3.7
environment:
TOXENV: py37-wheel
py38-wheel: py38-wheel:
<<: *common <<: *common
docker: docker:
@ -171,17 +159,14 @@ workflows:
test: test:
jobs: jobs:
- docs - docs
- py37-core
- py38-core - py38-core
- py39-core - py39-core
- py310-core - py310-core
- py311-core - py311-core
- py37-lint
- py38-lint - py38-lint
- py39-lint - py39-lint
- py310-lint - py310-lint
- py311-lint - py311-lint
- py37-wheel
- py38-wheel - py38-wheel
- py39-wheel - py39-wheel
- py310-wheel - py310-wheel

View File

@ -50,7 +50,7 @@ setup(
install_requires=[ install_requires=[
"eth-utils>=2", "eth-utils>=2",
], ],
python_requires=">=3.7, <4", python_requires=">=3.8, <4",
extras_require=extras_require, extras_require=extras_require,
py_modules=["<MODULE_NAME>"], py_modules=["<MODULE_NAME>"],
license="MIT", license="MIT",
@ -64,7 +64,6 @@ setup(
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",

View File

@ -1,8 +1,8 @@
[tox] [tox]
envlist= envlist=
py{37,38,39,310,311}-core py{38,39,310,311}-core
py{38,39,310,311}-lint py{38,39,310,311}-lint
py{37,38,39,310,311}-wheel py{38,39,310,311}-wheel
py311-wheel-windows py311-wheel-windows
docs docs
@ -28,7 +28,6 @@ commands=
docs: make check-docs docs: make check-docs
basepython= basepython=
docs: python docs: python
py37: python3.7
py38: python3.8 py38: python3.8
py39: python3.9 py39: python3.9
py310: python3.10 py310: python3.10
@ -51,7 +50,7 @@ commands: {[common-lint]commands}
[testenv:py{38,39,310,311}-lint] [testenv:py{38,39,310,311}-lint]
commands: {[common-lint]commands} commands: {[common-lint]commands}
[testenv:py{37,38,39,310,311}-wheel] [testenv:py{38,39,310,311}-wheel]
deps= deps=
wheel wheel
build[virtualenv] build[virtualenv]