forked from ga4gh/ga4gh-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add constraints call to requirements.txt
Guard for misparsed line in setup.py Add comments to constraints and setup to assist developers.
- Loading branch information
Showing
3 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
# This file allows our dependencies to be against specific versions | ||
# or git tags. Each line is similar to a requirements.txt line, | ||
# except that when installing the dependencies, the constraints.txt | ||
# is converted into the `dependency_links` of the setuptools | ||
# packaging script. This allows us to maintain dependencies across | ||
# repositories. | ||
# | ||
# For example, during development the we use the development version | ||
# of the schemas with the line: | ||
# | ||
# git+git://github.com/ga4gh/ga4gh-schemas.git@master#egg=ga4gh_schemas | ||
# | ||
# When one has proposed a schema modification, they can change this | ||
# constraint to point at the branch of their proposed change: | ||
# | ||
# git+git://github.com/david4096/schemas.git@protobuf31#egg=ga4gh_schemas | ||
# | ||
# Then, when the change has been accepted at the schemas repository | ||
# you can change this to point back at the master branch! | ||
git+git://github.com/david4096/ga4gh-client.git@protobuf31#egg=ga4gh_client | ||
git+git://github.com/david4096/schemas.git@protobuf31#egg=ga4gh_schemas | ||
git+git://github.com/david4096/schemas.git@protobuf31#egg=ga4gh_schemas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters