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

Commit

Permalink
Merge pull request #378 from fetchai/develop
Browse files Browse the repository at this point in the history
Release 0.1.5
  • Loading branch information
DavidMinarsch authored Sep 16, 2019
2 parents 90a2894 + ba11e2f commit eb1f598
Show file tree
Hide file tree
Showing 57 changed files with 389 additions and 433 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,11 @@ Release History
- Updated to OEF SDK version 0.6.7
- Transition to AEA architecture and extraction of AEA framework.
- Updated to AEA version 0.1.1

0.1.5 (2019-09-16)
-------------------

- Bump to latest oef image 0.7
- Bump to latest aea version 0.1.2
- Static type checking with Mypy
- Test/bug fixes
9 changes: 9 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ pipeline {

} // code style check

stage('Static Type Check') {

steps {
sh 'pip3 install tox'
sh 'tox -e mypy'
}

} // static type check

stage('Unit Tests') {

steps {
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ clean-test:
rm -fr htmlcov/
rm -fr .hypothesis
rm -fr .pytest_cache
rm -fr .mypy_cache/
find . -name 'log.txt' -exec rm -fr {} +
find . -name 'log.*.txt' -exec rm -fr {} +

Expand Down
9 changes: 5 additions & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ flake8 = "*"
ipython = "*"
jupyter = "*"
pytest = "*"
tox = "*"
tox-pipenv = "*"
tox = "==3.7.0"
tox-pipenv = "==1.9.0"
pytest-cov = "*"
docker = "*"
flake8-docstrings = "*"
pygments = "*"
mypy = "*"

[packages]
fetchai-ledger-api = {git = "https://github.com/fetchai/ledger-api-py.git"}
Expand All @@ -28,14 +29,14 @@ flask-restful = "*"
nbsphinx = "*"
numpy = "*"
matplotlib = "*"
oef = {index = "test-pypi",version = "==0.6.7"}
oef = {index = "test-pypi",version = "==0.6.10"}
python-dateutil = "*"
sphinxcontrib-mermaid = "*"
sphinxcontrib-apidoc = "*"
sphinx = "*"
wtforms = "*"
visdom = "*"
aea = {index = "test-pypi",version = "==0.1.1"}
aea = {index = "test-pypi",version = "==0.1.2"}
colorlog = "*"

[requires]
Expand Down
172 changes: 119 additions & 53 deletions Pipfile.lock

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

Loading

0 comments on commit eb1f598

Please sign in to comment.