Skip to content

Commit

Permalink
Remove peep process
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius authored and oz123 committed Oct 29, 2024
1 parent 6011d4c commit c2665b4
Show file tree
Hide file tree
Showing 15 changed files with 4 additions and 283 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ about: Suggest an idea for this project

Be sure to check the existing issues (both open and closed!), and make sure you are running the latest version of Pipenv.

Check the [diagnose documentation](https://pipenv.pypa.io/en/latest/diagnose/) for common issues and the [PEEP list](https://github.com/pypa/pipenv/blob/master/peeps/) before posting! We may close your issue if it is very similar to one of them. Please be considerate and follow the PEEP process, or be on your way.
Check the [diagnose documentation](https://pipenv.pypa.io/en/latest/diagnose/) for common issues as well as the GitHub Issues page.

Make sure to mention your debugging experience if the documented solution failed.

Expand Down
4 changes: 1 addition & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ What is the thing you want to fix? Is it associated with an issue on GitHub? Ple

Always consider opening an issue first to describe your problem, so we can discuss what is the best way to amend it. Note that if you do not describe the goal of this change or link to a related issue, the maintainers may close the PR without further review.

If your pull request makes a non-insignificant change to Pipenv, such as the user interface or intended functionality, please file a PEEP.

https://github.com/pypa/pipenv/blob/master/peeps/PEEP-000.md
If your pull request makes a non-insignificant change to Pipenv, such as the user interface or intended functionality, please open a discussion or issue report first.

### The fix

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ on:
- "**/*.txt"
- "examples/**"
- "news/**"
- "peeps/**"
branches:
- main
pull_request:
Expand All @@ -36,7 +35,6 @@ on:
- "**/*.txt"
- "examples/**"
- "news/**"
- "peeps/**"
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ recursive-include docs/_templates *.html
recursive-include docs/_static *.js *.css *.png
recursive-exclude tests/test_artifacts *.pyd *.so *.pyc *.egg-info PKG-INFO

prune peeps
prune .azure-pipelines
prune .github
prune pipenv/vendor/importlib_metadata/tests
Expand Down
9 changes: 0 additions & 9 deletions peeps/PEEP-000.md

This file was deleted.

23 changes: 0 additions & 23 deletions peeps/PEEP-001.md

This file was deleted.

33 changes: 0 additions & 33 deletions peeps/PEEP-002.md

This file was deleted.

9 changes: 0 additions & 9 deletions peeps/PEEP-003.md

This file was deleted.

9 changes: 0 additions & 9 deletions peeps/PEEP-004.md

This file was deleted.

65 changes: 0 additions & 65 deletions peeps/PEEP-005.md

This file was deleted.

62 changes: 0 additions & 62 deletions peeps/PEEP-006.md

This file was deleted.

54 changes: 0 additions & 54 deletions peeps/PEEP-044.md

This file was deleted.

9 changes: 0 additions & 9 deletions peeps/PEEP-TEMPLATE.md

This file was deleted.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ addopts = "-ra --no-cov"
plugins = "xdist"
testpaths = [ "tests" ]
# Add vendor and patched in addition to the default list of ignored dirs
# Additionally, ignore tasks, news, test subdirectories and peeps directory
# Additionally, ignore tasks, news, test subdirectories
norecursedirs = [
".*",
"build",
Expand All @@ -218,7 +218,6 @@ norecursedirs = [
"docs",
"tests/test_artifacts",
"tests/pypi",
"peeps",
]
filterwarnings = [ ]
# These are not all the custom markers, but most of the ones with repeat uses
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_install_markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_global_overrides_environment_markers(pipenv_instance_private_pypi):
@pytest.mark.markers
@pytest.mark.complex
@pytest.mark.skipif(
sys.version_info == (3, 8), reason="Test package that gets installed is different on 3.8"
sys.version_info[:2] == (3, 8), reason="Test package that gets installed is different on 3.8"
)
def test_resolver_unique_markers(pipenv_instance_pypi):
"""Test that markers are properly cleaned and not duplicated when resolving
Expand Down

0 comments on commit c2665b4

Please sign in to comment.