You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,41 @@
1
+
2022.9.20 (2022-09-20)
2
+
======================
3
+
Pipenv 2022.9.20 (2022-09-20)
4
+
=============================
5
+
6
+
7
+
Behavior Changes
8
+
----------------
9
+
10
+
- Remove usage of pipfile module in favour of Plette.
11
+
pipfile is not actively maintained anymore. Plette is actively maintained,
12
+
and has stricter checking of the Pipefile and Pipefile.lock. As a result,
13
+
Pipefile with unnamed package indecies will fail to lock. If a Pipefile
14
+
was hand crafeted, and the source is anonymous an error will be thrown.
15
+
The solution is simple, add a name to your index, e.g, replace::
16
+
17
+
[[source]]
18
+
url = "https://pypi.acme.com/simple"
19
+
verify_ssl = true
20
+
21
+
With::
22
+
23
+
[[source]]
24
+
url = "https://pypi.acme.com/simple"
25
+
verify_ssl = true
26
+
name = acmes_private_index `#5339 <https://github.com/pypa/pipenv/issues/5339>`_
27
+
28
+
Bug Fixes
29
+
---------
30
+
31
+
- Modernize ``pipenv`` path patch with ``importlib.util`` to eliminate import of ``pkg_resources`` `#5349 <https://github.com/pypa/pipenv/issues/5349>`_
32
+
33
+
Vendored Libraries
34
+
------------------
35
+
36
+
- Remove iso8601 from vendored packages since it was not used. `#5346 <https://github.com/pypa/pipenv/issues/5346>`_
@@ -453,6 +453,55 @@ You might want to set \fBexport PIPENV_VENV_IN_PROJECT=1\fP in your .bashrc/.zsh
453
453
.sp
454
454
Congratulations, you now know how to install and use Python packages! ✨ 🍰 ✨
455
455
.SS Release and Version History
456
+
.SS 2022.9.20 (2022\-09\-20)
457
+
.SS Pipenv 2022.9.20 (2022\-09\-20)
458
+
.SS Behavior Changes
459
+
.INDENT0.0
460
+
.IP\(bu2
461
+
Remove usage of pipfile module in favour of Plette.
462
+
pipfile is not actively maintained anymore. Plette is actively maintained,
463
+
and has stricter checking of the Pipefile and Pipefile.lock. As a result,
464
+
Pipefile with unnamed package indecies will fail to lock. If a Pipefile
465
+
was hand crafeted, and the source is anonymous an error will be thrown.
466
+
The solution is simple, add a name to your index, e.g, replace:
467
+
.INDENT2.0
468
+
.INDENT3.5
469
+
.sp
470
+
.nf
471
+
.ftC
472
+
[[source]]
473
+
url = "https://pypi.acme.com/simple"
474
+
verify_ssl = true
475
+
.ftP
476
+
.fi
477
+
.UNINDENT
478
+
.UNINDENT
479
+
.sp
480
+
With:
481
+
.INDENT2.0
482
+
.INDENT3.5
483
+
.sp
484
+
.nf
485
+
.ftC
486
+
[[source]]
487
+
url = "https://pypi.acme.com/simple"
488
+
verify_ssl = true
489
+
name = acmes_private_index \(ga#5339 <https://github.com/pypa/pipenv/issues/5339>\(ga_
490
+
.ftP
491
+
.fi
492
+
.UNINDENT
493
+
.UNINDENT
494
+
.UNINDENT
495
+
.SS Bug Fixes
496
+
.INDENT0.0
497
+
.IP\(bu2
498
+
Modernize \fBpipenv\fP path patch with \fBimportlib.util\fP to eliminate import of \fBpkg_resources\fP\fI\%#5349\fP
499
+
.UNINDENT
500
+
.SS Vendored Libraries
501
+
.INDENT0.0
502
+
.IP\(bu2
503
+
Remove iso8601 from vendored packages since it was not used. \fI\%#5346\fP
504
+
.UNINDENT
456
505
.SS 2022.9.8 (2022\-09\-08)
457
506
.SS Pipenv 2022.9.8 (2022\-09\-08)
458
507
.SS Features & Improvements
@@ -3200,7 +3249,7 @@ Dependencies of wheels provided in a \fBPipfile\fP will not be captured by \fB$
3200
3249
.IP\(bu2
3201
3250
There are some known issues with using private indexes, related to hashing. We\(aqre actively working to solve this problem. You may have great luck with this, however.
3202
3251
.IP\(bu2
3203
-
Installation is intended to be as deterministic as possible —\ use the \fB\-\-sequential\fP flag to increase this, if experiencing issues.
3252
+
Installation is intended to be as deterministic as possible.
3204
3253
.UNINDENT
3205
3254
.SS ☤ Specifying Package Indexes
3206
3255
.sp
@@ -4070,13 +4119,6 @@ Default is 0. Automatically set to 1 on CI environments for robust testing.
4070
4119
.UNINDENT
4071
4120
.INDENT7.0
4072
4121
.TP
4073
-
.BPIPENV_MAX_SUBPROCESS
4074
-
How many subprocesses should Pipenv use when installing.
4075
-
.sp
4076
-
Default is 16, an arbitrary number that seems to work.
0 commit comments