Update dependencies (#9505)

* upgrade dependencies

* forbid old setuptools
This commit is contained in:
Brad Warren
2022-12-13 10:48:17 +11:00
committed by GitHub
parent 6b7549bf3a
commit 70a36fdf00
3 changed files with 51 additions and 39 deletions
+12
View File
@@ -61,6 +61,18 @@ pylint = { version="2.15.5", python = ">=3.7.2" }
# Making sure that it would not get installed (Fixing https://github.com/certbot/certbot/issues/9336)
cryptography = "!= 37.0.3"
# If poetry>=1.3.0 is selected, multiple versions of virtualenv are selected
# causing problems when exporting dependencies so let's pin poetry back until
# https://github.com/python-poetry/poetry-plugin-export/issues/168 is resolved.
poetry = "<1.3.0"
# jsonpickle is currently pinning back setuptools which can cause some problems
# in newer versions of Python. Until
# https://github.com/jsonpickle/jsonpickle/issues/424 is resolved, let's
# require a newer version of setuptools ourselves so a solution other than
# downgrading setuptools is found.
setuptools = ">=62.3.0"
[tool.poetry.dev-dependencies]
[build-system]