-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bernát Gábor <[email protected]>
- Loading branch information
1 parent
f130306
commit d568a8f
Showing
57 changed files
with
459 additions
and
942 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
workflow_dispatch: | ||
|
||
env: | ||
default-python: "3.11" | ||
default-python: "3.12" | ||
|
||
jobs: | ||
testpypi-publish: | ||
|
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
python: "3.12" | ||
commands: | ||
- pip install nox | ||
- nox --session build_docs -- "${READTHEDOCS_OUTPUT}"/html |
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 |
---|---|---|
@@ -1,15 +1,23 @@ | ||
[build-system] | ||
requires = ["hatchling>=0.15.0"] | ||
build-backend = "hatchling.build" | ||
requires = [ | ||
"hatchling>=0.15", | ||
] | ||
|
||
[project] | ||
name = "pipx" | ||
description = "Install and Run Python Applications in Isolated Environments" | ||
readme = "README.md" | ||
keywords = [ | ||
"cli", | ||
"install", | ||
"pip", | ||
"Virtual Environment", | ||
"workflow", | ||
] | ||
license = "MIT" | ||
requires-python = ">=3.8" | ||
keywords = ["pip", "install", "cli", "workflow", "Virtual Environment"] | ||
authors = [{ name = "Chad Smith", email = "[email protected]" }] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
|
@@ -19,22 +27,23 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
dependencies = [ | ||
"argcomplete>=1.9.4", | ||
"colorama>=0.4.4; sys_platform == 'win32'", | ||
"packaging>=20.0", | ||
"platformdirs>=2.1.0", | ||
"tomli; python_version < '3.11'", | ||
"userpath>=1.6.0,!=1.9.0", | ||
'colorama>=0.4.4; sys_platform == "win32"', | ||
"packaging>=20", | ||
"platformdirs>=2.1", | ||
'tomli; python_version < "3.11"', | ||
"userpath!=1.9.0,>=1.6", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
"Bug Tracker" = "https://github.com/pypa/pipx/issues" | ||
Documentation = "https://pypa.github.io/pipx/" | ||
"Source Code" = "https://github.com/pypa/pipx" | ||
"Bug Tracker" = "https://github.com/pypa/pipx/issues" | ||
|
||
[project.scripts] | ||
pipx = "pipx.main:cli" | ||
|
||
|
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
Oops, something went wrong.