Add news about migration to Plette

This commit is contained in:
Oz N Tiram
2022-09-15 15:04:24 +02:00
parent a23fee69b0
commit 3f679ad5ad
+17
View File
@@ -0,0 +1,17 @@
Remove usage of pipfile module in favour of Plette.
pipfile is not actively maintained anymore. Plette is actively maintained,
and has stricter checking of the Pipefile and Pipefile.lock. As a result,
Pipefile with unnamed package indecies will fail to lock. If a Pipefile
was hand crafeted, and the source is anonymous an error will be thrown.
The solution is simple, add a name to your index, e.g, replace::
[[source]]
url = "https://pypi.acme.com/simple"
verify_ssl = true
With::
[[source]]
url = "https://pypi.acme.com/simple"
verify_ssl = true
name = acmes_private_index