diff --git a/Makefile b/Makefile index fe5f4932..e518d942 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ venv_dir := $(get_venv_dir)/pipenv_venv venv_file := $(CURDIR)/.test_venv get_venv_path =$(file < $(venv_file)) # 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 = '\\' # This is how we will build generic wheels, e.g. py2 or py3 INSTALL_TARGETS := $(addprefix install-py,$(PY_VERSIONS)) @@ -96,7 +96,7 @@ retest: virtualenv submodules test-install .PHONY: build 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 update-version: diff --git a/pyproject.toml b/pyproject.toml index f6cf6240..23e8c3d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,12 +12,11 @@ license = {file = "LICENSE"} authors = [ {name = "Pipenv maintainer team", email = "distutils-sig@python.org"}, ] -requires-python = ">=3.7" +requires-python = ">=3.8" classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",