mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 23:30:29 -04:00
- Support for Python 3 has been added PR: 204266 Submitted by: pi Approved by: Maxim Filimonov <che@bein.link>
15 lines
552 B
Python
15 lines
552 B
Python
--- setup.py.orig 2015-11-03 20:07:22 UTC
|
|
+++ setup.py
|
|
@@ -6,9 +6,9 @@ setup(
|
|
version="1.3.0",
|
|
packages=find_packages(exclude=["tests"]),
|
|
scripts=['PyGitUp/gitup.py'],
|
|
- install_requires=['GitPython==1.0.0', 'colorama==0.3.3',
|
|
- 'termcolor==1.1.0', 'docopt==0.6.2',
|
|
- 'six==1.9.0'],
|
|
+ install_requires=['GitPython>=1.0.0', 'colorama>=0.3.3',
|
|
+ 'termcolor>=1.1.0', 'docopt>=0.6.2',
|
|
+ 'six>=1.9.0'],
|
|
|
|
# Tests
|
|
test_suite="nose.collector",
|