changed planetmint-cryptoconditions reference (#85)

* changed planetmint-cryptoconditions reference

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>

* increased version and added missing data

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2022-04-04 23:20:58 +02:00 committed by GitHub
parent 06085e3798
commit 5fd8bde123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,7 @@
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0
__version__ = '0.9.0'
__version__ = '0.9.1'
__short_version__ = '0.9'
# Supported Tendermint versions

View File

@ -77,8 +77,7 @@ install_requires = [
'chardet==3.0.4',
'aiohttp==3.7.4',
'abci==0.8.3',
#'planetmint-cryptoconditions>=0.9.0',
'planetmint-cryptoconditions @ git+https://github.com/planetmint/cryptoconditions.git@gitzenroom',
'planetmint-cryptoconditions>=0.9.4',
'flask-cors==3.0.10',
'flask-restful==0.3.9',
'flask==2.0.1',
@ -140,5 +139,7 @@ setup(
'dev': dev_require + tests_require + docs_require,
'docs': docs_require,
},
package_data={'planetmint.transactions.common.schema': ['*.yaml']},
package_data={
'planetmint.transactions.common.schema': ['v1.0/*.yaml','v2.0/*.yaml','v3.0/*.yaml' ],
},
)