From 3f679ad5ad54badbb2a50e31c539d4d2980efc7c Mon Sep 17 00:00:00 2001 From: Oz N Tiram Date: Thu, 15 Sep 2022 15:04:24 +0200 Subject: [PATCH] Add news about migration to Plette --- news/5339.behavior.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 news/5339.behavior.rst diff --git a/news/5339.behavior.rst b/news/5339.behavior.rst new file mode 100644 index 00000000..d9a7bb95 --- /dev/null +++ b/news/5339.behavior.rst @@ -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