[pkg] merge 3.27
Require python >= 3.6 since recent typing notations require >= 3.6
--- a/cubicweb/__pkginfo__.py Wed Mar 11 11:18:40 2020 +0100
+++ b/cubicweb/__pkginfo__.py Tue Mar 17 13:34:54 2020 +0100
@@ -34,7 +34,9 @@
classifiers = [
'Environment :: Web Environment',
'Framework :: CubicWeb',
+ 'Programming Language :: Python',
'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3 :: Only',
'Programming Language :: JavaScript',
]
--- a/setup.cfg Wed Mar 11 11:18:40 2020 +0100
+++ b/setup.cfg Tue Mar 17 13:34:54 2020 +0100
@@ -1,6 +1,3 @@
-[bdist_wheel]
-universal = 1
-
[check-manifest]
ignore =
debian
--- a/setup.py Wed Mar 11 11:18:40 2020 +0100
+++ b/setup.py Tue Mar 17 13:34:54 2020 +0100
@@ -112,4 +112,5 @@
],
},
zip_safe=False,
+ python_requires=">=3.6",
)