Navigation Menu

Skip to content

Commit

Permalink
Renamed Repository
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkrellenstein committed Apr 23, 2015
1 parent 29b08e6 commit 13fadf7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
@@ -1,6 +1,6 @@
[![Build Status Travis](https://travis-ci.org/CounterpartyXCP/counterpartyd.svg?branch=develop)](https://travis-ci.org/CounterpartyXCP/counterpartyd)
[![Build Status Circle](https://circleci.com/gh/CounterpartyXCP/counterpartyd.svg?&style=shield)](https://circleci.com/gh/CounterpartyXCP/counterpartyd)
[![Coverage Status](https://coveralls.io/repos/CounterpartyXCP/counterpartyd/badge.png?branch=develop)](https://coveralls.io/r/CounterpartyXCP/counterpartyd?branch=develop)
[![Build Status Travis](https://travis-ci.org/CounterpartyXCP/counterparty-lib.svg?branch=develop)](https://travis-ci.org/CounterpartyXCP/counterparty-lib)
[![Build Status Circle](https://circleci.com/gh/CounterpartyXCP/counterparty-lib.svg?&style=shield)](https://circleci.com/gh/CounterpartyXCP/counterparty-lib)
[![Coverage Status](https://coveralls.io/repos/CounterpartyXCP/counterparty-lib/badge.png?branch=develop)](https://coveralls.io/r/CounterpartyXCP/counterparty-lib?branch=develop)
[![Latest Version](https://pypip.in/version/counterparty-lib/badge.svg)](https://pypi.python.org/pypi/counterparty-lib/)
[![License](https://pypip.in/license/counterparty-lib/badge.svg)](https://pypi.python.org/pypi/counterparty-lib/)
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/CounterpartyXCP/General)
Expand Down Expand Up @@ -29,8 +29,8 @@
# Installation

```
$ git clone https://github.com/CounterpartyXCP/counterpartyd.git
$ cd counterpartyd
$ git clone https://github.com/CounterpartyXCP/counterparty-lib.git
$ cd counterparty-lib
$ python3 setup.py install
```

Expand Down
4 changes: 0 additions & 4 deletions counterpartylib/lib/check.py
Expand Up @@ -143,10 +143,6 @@ def software_version():
try:
host = 'https://counterpartyxcp.github.io/counterparty-lib/counterpartylib/protocol_changes.json'
response = requests.get(host, headers={'cache-control': 'no-cache'})
# TODO: Temporary
if response.status_code != 200:
host = 'https://counterpartyxcp.github.io/counterpartyd/counterpartylib/protocol_changes.json' # Old Location
response = requests.get(host, headers={'cache-control': 'no-cache'})
versions = json.loads(response.text)
except (requests.exceptions.ConnectionError, ConnectionRefusedError, ValueError) as e:
logger.warning('Unable to check version! ' + str(sys.exc_info()[1]))
Expand Down
2 changes: 1 addition & 1 deletion release_procedure.md
Expand Up @@ -12,7 +12,7 @@
* `sudo python3 setup.py sdist build`
<!-- * `sudo python3 setup.py bdist_wheel build` # Does not work with `apsw` and `ethereum-serpent` installs. -->
* `twine upload -s dist/$NEW_FILES`
- Write [Release Notes](https://github.com/CounterpartyXCP/counterpartyd/releases)
- Write [Release Notes](https://github.com/CounterpartyXCP/counterparty-lib/releases)
- Update documentation (as appropriate)

**@ivanazuber:**:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -198,7 +198,7 @@ def run(self):
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing"
],
'download_url': 'https://github.com/CounterpartyXCP/counterpartyd/releases/tag/v' + CURRENT_VERSION,
'download_url': 'https://github.com/CounterpartyXCP/counterparty-lib/releases/tag/v' + CURRENT_VERSION,
'provides': ['counterpartylib'],
'packages': find_packages(),
'zip_safe': False,
Expand Down

0 comments on commit 13fadf7

Please sign in to comment.