remove some more 3.7 leftovers

This commit is contained in:
Mathieu Dupuy
2023-10-20 09:47:55 +02:00
parent f7ae8f10a8
commit ad6cf4fb3d
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ venv_dir := $(get_venv_dir)/pipenv_venv
venv_file := $(CURDIR)/.test_venv venv_file := $(CURDIR)/.test_venv
get_venv_path =$(file < $(venv_file)) get_venv_path =$(file < $(venv_file))
# This is how we will build tag-specific wheels, e.g. py36 or py37 # This is how we will build tag-specific wheels, e.g. py36 or py37
PY_VERSIONS:= 3.7 3.8 3.9 3.10 3.11 PY_VERSIONS:= 3.8 3.9 3.10 3.11
BACKSLASH = '\\' BACKSLASH = '\\'
# This is how we will build generic wheels, e.g. py2 or py3 # This is how we will build generic wheels, e.g. py2 or py3
INSTALL_TARGETS := $(addprefix install-py,$(PY_VERSIONS)) INSTALL_TARGETS := $(addprefix install-py,$(PY_VERSIONS))
@@ -96,7 +96,7 @@ retest: virtualenv submodules test-install
.PHONY: build .PHONY: build
build: install-virtualenvs.stamp install.stamp build: install-virtualenvs.stamp install.stamp
PIPENV_PYTHON=3.7 pipenv run python -m build PIPENV_PYTHON=3.8 pipenv run python -m build
.PHONY: update-version .PHONY: update-version
update-version: update-version:
+1 -2
View File
@@ -12,12 +12,11 @@ license = {file = "LICENSE"}
authors = [ authors = [
{name = "Pipenv maintainer team", email = "distutils-sig@python.org"}, {name = "Pipenv maintainer team", email = "distutils-sig@python.org"},
] ]
requires-python = ">=3.7" requires-python = ">=3.8"
classifiers=[ classifiers=[
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"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",