Skip to content

Commit

Permalink
Change dependency links to avoid requiring git to download.
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcru committed Feb 23, 2018
1 parent d26ac65 commit 004a50c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
1 change: 0 additions & 1 deletion .idea/runConfigurations/python_to_GH.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Changelog
*********

1.1.2 (2018-02-23)
------------------

Fix
^^^
- Use https file location for the dependencies, to remove the need for git when installing.

1.1.0 (2018-02-14)
------------------

Expand Down
2 changes: 1 addition & 1 deletion ghpythonremote/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.1.1'
__version__ = '1.1.2'
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
git+git://github.com/pilcru/rpyc.git@v3.4.5#egg=rpyc>=3.4.5
https://github.com/pilcru/rpyc/archive/v3.4.5.tar.gz#egg=rpyc>=3.4.5
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
'rpyc>=3.4.5'
],
dependency_links=[
'git+https://github.com/pilcru/rpyc.git@v3.4.5#egg=rpyc-3.4.5',
'https://github.com/pilcru/rpyc/archive/v3.4.5.tar.gz#egg=rpyc-3.4.5',
],
extras_require={
'dev': ['check-manifest'],
Expand Down

0 comments on commit 004a50c

Please sign in to comment.