Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
logilab-common
Commits
92e8fd340584
Commit
4fb7a755
authored
Nov 08, 2019
by
Philippe Pepiot
Browse files
Require python >= 3.3
This avoid having a python2 pip pulling our python3 only package.
parent
f3d723aeacf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
__pkginfo__.py
View file @
92e8fd34
...
...
@@ -60,6 +60,6 @@ if os.name == 'nt':
classifiers
=
[
"Topic :: Utilities"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3 :: Only"
,
]
setup.py
View file @
92e8fd34
...
...
@@ -48,6 +48,7 @@ setup(
classifiers
=
pkginfo
[
'classifiers'
],
packages
=
find_packages
(
exclude
=
[
'contrib'
,
'docs'
,
'test*'
]),
namespace_packages
=
[
pkginfo
[
'subpackage_of'
]],
python_requires
=
'>=3.3'
,
install_requires
=
pkginfo
[
'install_requires'
],
tests_require
=
pkginfo
[
'tests_require'
],
scripts
=
pkginfo
[
'scripts'
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment