Skip to content

Commit 55d6f5b

Browse files
committed
Merge branch 'main' into issue-5349
2 parents d00294e + 7d94c43 commit 55d6f5b

21 files changed

+488
-381
lines changed

CHANGELOG.rst

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
2022.9.8 (2022-09-08)
2+
=====================
3+
Pipenv 2022.9.8 (2022-09-08)
4+
============================
5+
6+
7+
Features & Improvements
8+
-----------------------
9+
10+
- It is now possible to supply additional arguments to ``pip`` install by supplying ``--extra-pip-args="<arg1> <arg2>"``
11+
See the updated documentation ``Supplying additional arguments to pip`` for more details. `#5283 <https://github.com/pypa/pipenv/issues/5283>`_
12+
13+
Bug Fixes
14+
---------
15+
16+
- Make editable detection better because not everyone specifies editable entry in the Pipfile for local editable installs. `#4784 <https://github.com/pypa/pipenv/issues/4784>`_
17+
- Add error handling for when the installed package setup.py does not contain valid markers. `#5329 <https://github.com/pypa/pipenv/issues/5329>`_
18+
- Load the dot env earlier so that ``PIPENV_CUSTOM_VENV_NAME`` is more useful across projects. `#5334 <https://github.com/pypa/pipenv/issues/5334>`_
19+
20+
Vendored Libraries
21+
------------------
22+
23+
- Bump version of shellingham to support nushell. `#5336 <https://github.com/pypa/pipenv/issues/5336>`_
24+
- Bump plette to version v0.3.0 `#5337 <https://github.com/pypa/pipenv/issues/5337>`_
25+
- Bump version of pipdeptree `#5343 <https://github.com/pypa/pipenv/issues/5343>`_
26+
27+
Removals and Deprecations
28+
-------------------------
29+
30+
- Add deprecation warning to the --three flag. Pipenv now uses python3 by default. `#5328 <https://github.com/pypa/pipenv/issues/5328>`_
31+
32+
Relates to dev process changes
33+
------------------------------
34+
35+
- Convert the test runner to use ``pypiserver`` as a standalone process for all tests that referencce internal ``pypi`` artifacts.
36+
General refactoring of some test cases to create more variety in packages selected--preferring lighter weight packages--in existing test cases.
37+
38+
139
2022.9.4 (2022-09-04)
240
=====================
341

news/5283.feature.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/5284.process.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/5328.removal.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/5329.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/5334.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/5336.vendor.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/5337.vendor.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

pipenv/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# // ) ) / / // ) ) //___) ) // ) ) || / /
33
# //___/ / / / //___/ / // // / / || / /
44
# // / / // ((____ // / / ||/ /
5-
__version__ = "2022.9.5.dev0"
5+
__version__ = "2022.9.9.dev0"

pipenv/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2887,7 +2887,7 @@ def do_graph(project, bare=False, json=False, json_tree=False, reverse=False):
28872887

28882888
from pipenv.vendor import pipdeptree
28892889

2890-
pipdeptree_path = pipdeptree.__file__.rstrip("cdo")
2890+
pipdeptree_path = os.path.dirname(pipdeptree.__file__.rstrip("cdo"))
28912891
try:
28922892
python_path = project._which("python")
28932893
except AttributeError:

0 commit comments

Comments
 (0)