Skip to content
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.

Commit

Permalink
distribution fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Moustikitos committed May 19, 2019
1 parent 106913a commit 5cd41c0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
### 0.1.2
- [x] Packaging improvement

### 0.1.3 : available on [PyPi](https://pypi.org/project/dposlib/)
### 0.1.3
- [x] REST requests header bugfix (ubuntu)

### 0.1.4
Expand All @@ -132,10 +132,10 @@
### 0.1.5
- [x] compatibility with both ark-core v2 devnet and mainnet

### 0.1.6 :
### 0.1.6
- [x] Ark-core v 2.1.x compatibility

### 0.1.7 :
### 0.1.7
- [x] added `transaction` and `rest` MarkDown documentation files
- [x] dposlib.core.api is both python 2.x and 3.x compliant
- [x] added Webhook api (experimental)
Expand All @@ -144,15 +144,16 @@
- [x] peer selection improvement
- [x] Lisk blockchain and forks developpement frozen

### 0.1.8 [current work](https://github.com/Moustikitos/dpos/archive/master.zip)
### 0.1.8
- [x] added ark v2.4 compatibility
- [x] api wallet link using getpass library
- [x] added ledger nano S support (transaction type 0, 1, 2 & 3)
- [x] peer selection now checks syncing status

### 0.1.9 [current work](https://github.com/Moustikitos/dpos/archive/master.zip)

## TODO
- [ ] doc writing
- [ ] unittest
- [ ] wallet
- [ ] CLI

5 changes: 4 additions & 1 deletion dposlib/blockchain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,10 @@ def update(self):
self.__dict.update(**result)

def track(self):
Data.REF.add(weakref.ref(self))
try:
Data.REF.add(weakref.ref(self))
except:
pass


class Wallet(Data):
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"include_package_data": True,
"description": "light api compatible with main ARK and LISK forks",
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"packages": [
"dposlib",
"dposlib.util",
Expand All @@ -41,7 +42,7 @@
],
"license": "Copyright 2018, MIT licence",
"classifiers": [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Flask",
Expand Down

0 comments on commit 5cd41c0

Please sign in to comment.