From ef3f9ce95e5196eb634ec7861553594276ff8217 Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Thu, 3 Feb 2022 15:30:38 -0800 Subject: [PATCH] build(versions): Cleanup unused buildout config Chanced across this while updating the `Products.PluggableAuthService` version. The `./versions.cfg` file isn't referenced anywhere that I can see. A `./versions.cfg` file is a convention in the Plone world so it's misleading to have an unused one lying around. A developer might reasonable assume that a change in that file should take effect. --- Makefile | 1 - versions.cfg | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 versions.cfg diff --git a/Makefile b/Makefile index 580ec28c8d..cb77f8cba3 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,6 @@ update: ## Update Make and Buildout wget -O requirements.txt https://raw.githubusercontent.com/kitconcept/buildout/5.2/requirements.txt wget -O plone-5.2.x.cfg https://raw.githubusercontent.com/kitconcept/buildout/5.2/plone-5.2.x.cfg wget -O ci.cfg https://raw.githubusercontent.com/kitconcept/buildout/5.2/ci.cfg - wget -O versions.cfg https://raw.githubusercontent.com/kitconcept/buildout/5.2/versions.cfg .installed.cfg: bin/buildout *.cfg bin/buildout diff --git a/versions.cfg b/versions.cfg deleted file mode 100644 index 28a57f5575..0000000000 --- a/versions.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[versions] -# Buildout -setuptools = -zc.buildout = -plone.restapi = - -# code analysis -black = 20.8b1 - -# Error: The requirement ('virtualenv>=20.0.35') is not allowed by your [versions] constraint (20.0.26) -virtualenv = 20.0.35 - -# Error: The requirement ('pep517>=0.9') is not allowed by your [versions] constraint (0.8.2) -pep517 = 0.9.1 - -# Error: The requirement ('importlib-metadata>=1') is not allowed by your [versions] constraint (0.23) -importlib-metadata = 2.0.0 - -# cryptography 3.4 requires a rust compiler installed on the system: -# https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst#34---2021-02-07 -cryptography = 3.3.2 - -# cffi 1.14.3 fails on apple m1 -cffi = 1.14.4 - -# requirement for json widget tests to pass -plone.schema = 1.3.0 -plone.dexterity = 2.9.8 \ No newline at end of file