-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/pypa/pip into issue-6222
- Loading branch information
Showing
72 changed files
with
2,323 additions
and
2,703 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Code quality | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
# Run every Friday at 18:02 UTC | ||
# https://crontab.guru/#2_18_*_*_5 | ||
- cron: 2 18 * * 5 | ||
|
||
jobs: | ||
linters: | ||
name: 🤖 | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
# max-parallel: 5 | ||
matrix: | ||
os: | ||
- ubuntu-18.04 | ||
env: | ||
- TOXENV: docs | ||
- TOXENV: lint | ||
- TOXENV: lint-py2 | ||
PYTHON_VERSION: 2.7 | ||
- TOXENV: mypy | ||
- TOXENV: packaging | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python ${{ matrix.env.PYTHON_VERSION || 3.7 }} | ||
uses: actions/setup-python@v1 | ||
with: | ||
version: ${{ matrix.env.PYTHON_VERSION || 3.7 }} | ||
- name: Pre-configure global Git settings | ||
run: >- | ||
tools/travis/setup.sh | ||
- name: Update setuptools and tox dependencies | ||
run: >- | ||
tools/travis/install.sh | ||
- name: 'Initialize tox envs: ${{ matrix.env.TOXENV }}' | ||
run: >- | ||
python -m tox --notest --skip-missing-interpreters false | ||
env: ${{ matrix.env }} | ||
- name: Test with tox | ||
run: >- | ||
python -m tox | ||
env: ${{ matrix.env }} |
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,25 @@ | ||
.. note:: | ||
This section of the documentation is currently being written. pip | ||
developers welcome your help to complete this documentation. If you're | ||
interested in helping out, please let us know in the | ||
`tracking issue <https://github.com/pypa/pip/issues/6583>`__. | ||
|
||
============ | ||
Issue Triage | ||
============ | ||
|
||
This serves as an introduction to issue tracking in pip as well as | ||
how to help triage reported issues. | ||
|
||
|
||
Issue Tracker | ||
************* | ||
|
||
The `pip issue tracker <https://github.com/pypa/pip/issues>`__ is hosted on | ||
GitHub alongside the project. | ||
|
||
Currently, the issue tracker is used for bugs, feature requests, and general | ||
user support. | ||
|
||
In the pip issue tracker, we make use of labels and milestones to organize and | ||
track work. |
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 @@ | ||
Fix ``rmtree_errorhandler`` to skip non-existing directories. |
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,2 @@ | ||
Fix requirement line parser to correctly handle PEP 440 requirements with a URL | ||
pointing to an archive file. |
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,2 @@ | ||
Correctly uninstall symlinks that were installed in a virtualenv, | ||
by tools such as ``flit install --symlink``. |
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 @@ | ||
Add a GitHub Actions workflow running all linters. |
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 @@ | ||
Don't use hardlinks for locking selfcheck state file. |
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 @@ | ||
Ignore "require_virtualenv" in `pip config` |
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,2 @@ | ||
Remove undocumented support for http:// requirements pointing to SVN | ||
repositories. |
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,2 @@ | ||
Use normal ``fixture`` instead of ``yield_fixture``. | ||
It's been deprecated in pytest since 2.10 version. |
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 @@ | ||
Remove Lockfile as a vendored dependency. |
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.