-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'shared-libs-drop-setuptools-wheel' of github.com:chrysl…
…e/pipx into shared-libs-drop-setuptools-wheel
- Loading branch information
Showing
38 changed files
with
301 additions
and
189 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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
run: | | ||
nox --error-on-missing-interpreters --non-interactive --session build | ||
- name: Publish to Test PyPi | ||
uses: pypa/[email protected].7 | ||
uses: pypa/[email protected].11 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.test_pypi_password }} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -55,7 +55,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
include: | ||
- os: windows-latest | ||
python-version: "3.11" | ||
|
@@ -110,7 +110,7 @@ jobs: | |
run: | | ||
nox --error-on-missing-interpreters --non-interactive --session build | ||
- name: Publish to PyPi | ||
uses: pypa/[email protected].7 | ||
uses: pypa/[email protected].11 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
Consumer commands | ||
cache Perform file operations in the local cache (of recipes and/or packages). | ||
config Manage the Conan configuration in the Conan home. | ||
graph Compute a dependency graph, without installing or building the binaries. | ||
inspect Inspect a conanfile.py to return its public fields. | ||
install Install the requirements specified in a recipe (conanfile.py or conanfile.txt). | ||
list List existing recipes, revisions, or packages in the cache (by default) or the | ||
remotes. | ||
lock Create or manage lockfiles. | ||
profile Manage profiles. | ||
remote Manage the remote list and the users authenticated on them. | ||
remove Remove recipes or packages from local cache or a remote. | ||
search Search for package recipes in all the remotes (by default), or a remote. | ||
version Give information about the Conan client version. | ||
|
||
Creator commands | ||
build Install dependencies and call the build() method. | ||
create Create a package. | ||
download Download (without installing) a single conan package from a remote server. | ||
editable Allow working with a package that resides in user folder. | ||
export Export a recipe to the Conan package cache. | ||
export-pkg Create a package directly from pre-compiled binaries. | ||
new Create a new example recipe and source files from a template. | ||
source Call the source() method. | ||
test Test a package from a test_package folder. | ||
upload Upload packages to a remote. | ||
|
||
Type "conan <command> -h" for help |
Oops, something went wrong.