Skip to content
Snippets Groups Projects
Commit 97fbedc2e250 authored by Manuel Jacob's avatar Manuel Jacob
Browse files

setup: require dulwich < 0.20.0 on Python 2

Dulwich 0.20.0 dropped Python 2 support.
Source: https://github.com/dulwich/dulwich/blob/master/NEWS
parent 0844a2c21bbd
No related branches found
No related tags found
1 merge request!34Require dulwich < 0.20.0 on Python 2.
Pipeline #8760 passed
......@@ -34,5 +34,8 @@
packages=['hggit'],
package_data={'hggit': ['help/git.rst']},
include_package_data=True,
install_requires=['dulwich>=0.19.0'],
install_requires=[
'dulwich>=0.19.0;python_version>="3.0"',
'dulwich>=0.19.0,<0.20.0;python_version<"3.0"',
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment