Skip to content

Commit 6f73d34

Browse files
authored
Merge pull request #93 from Guillemdb/master
Fix dependency conflict and wrong badge link.
2 parents c73a323 + 4db0f97 commit 6f73d34

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Modelforge [![docs on gitbook](https://img.shields.io/badge/docs-gitbook-brightgreen.svg)](https://docs.sourced.tech/modelforge/) [![Build Status](https://travis-ci.org/src-d/modelforge.svg)](https://travis-ci.org/src-d/modelforge) [![codecov](https://codecov.io/github/src-d/modelforge/coverage.svg)](https://codecov.io/gh/src-d/modelforge) [![PyPI](https://img.shields.io/pypi/v/modelforge.svg)](https://pypi.python.org/pypi/modelforge)
1+
# Modelforge [![docs on gitbook](https://img.shields.io/badge/docs-gitbook-brightgreen.svg)](https://docs.sourced.tech/modelforge/) [![Build Status](https://travis-ci.com/src-d/modelforge.svg)](https://travis-ci.com/src-d/modelforge)[![codecov](https://codecov.io/github/src-d/modelforge/coverage.svg)](https://codecov.io/gh/src-d/modelforge)[![PyPI](https://img.shields.io/pypi/v/modelforge.svg)](https://pypi.python.org/pypi/modelforge)
22

33
Modelforge is a foundation for sharing trained machine learning models. It is a set of command line
44
tools and a Python library. Modelforge maintains model files in a third-party remote storage service

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ numpy==1.14.0
44
scipy==1.0.0
55
clint==0.5.1
66
google-cloud-storage==1.2.0
7+
# requests should be before dulwich to avoid urllib3 version conflict
8+
requests==2.21.0
79
dulwich==0.19.11
810
jinja2 ==2.10
911
humanize==0.5.1
1012
python-dateutil==2.7.3
11-
requests==2.21.0
1213
pygtrie==2.3
1314
xxhash==1.2.0
1415
spdx==2.5.0

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@
3131
"scipy>=1.0,<2.0",
3232
"clint>=0.5.0,<0.6",
3333
"google-cloud-storage>=1.2,<=1.2.0",
34+
# requests should be before dulwich to avoid urllib3 version conflict
35+
"requests >=2.0,<3.0",
3436
"dulwich>=0.19,<1.0",
3537
"jinja2 >=2.0,<3.0",
3638
"humanize>=0.5.0,<0.6",
3739
"python-dateutil>=2.0,<3.0",
38-
"requests >=2.0,<3.0",
3940
"typing;python_version<'3.5'",
4041
"pygtrie>=1.0,<3.0",
4142
"xxhash>=1.0,<2.0",

0 commit comments

Comments
 (0)