-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,14 @@ name = "pipx" | |
description = "Install and Run Python Applications in Isolated Environments" | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
keywords = ["pip", "install", "cli", "workflow", "Virtual Environment"] | ||
authors = [{ name = "Chad Smith", email = "[email protected]" }] | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"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", | ||
|
@@ -24,7 +23,6 @@ classifiers = [ | |
dependencies = [ | ||
"argcomplete>=1.9.4", | ||
"colorama>=0.4.4; sys_platform == 'win32'", | ||
"importlib-metadata>=3.3.0; python_version < '3.8'", | ||
"packaging>=20.0", | ||
"platformdirs>=2.1.0", | ||
"userpath>=1.6.0,!=1.9.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import sys | ||
|
||
if sys.version_info < (3, 6, 0): | ||
if sys.version_info < (3, 8, 0): | ||
sys.exit( | ||
"Python 3.6 or later is required. " | ||
"Python 3.8 or later is required. " | ||
"See https://github.com/pypa/pipx " | ||
"for installation instructions." | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ def test_fix_package_name(package_spec_in, package_name, package_spec_out): | |
True, | ||
), | ||
( | ||
'my-project[cli] @ git+ssh://[email protected]/my-company/myproject.git ; python_version<"3.7"', | ||
'my-project[cli] @ git+ssh://[email protected]/my-company/myproject.git ; python_version<"3.8"', | ||
"my-project[cli]@ git+ssh://[email protected]/my-company/myproject.git", | ||
True, | ||
), | ||
|
@@ -165,7 +165,7 @@ def test_parse_specifier_for_metadata( | |
True, | ||
), | ||
( | ||
'my-project[cli] @ git+ssh://[email protected]/my-company/myproject.git ; python_version<"3.7"', | ||
'my-project[cli] @ git+ssh://[email protected]/my-company/myproject.git ; python_version<"3.8"', | ||
"my-project[cli]@ git+ssh://[email protected]/my-company/myproject.git", | ||
True, | ||
), | ||
|