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

Commit

Permalink
v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi Chen committed Apr 15, 2020
1 parent e0b1233 commit 5389b45
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda info -a
conda create -q -n test-environment python=3.7 numpy scipy matplotlib sympy cython
conda create -q -n test-environment python=3.7 numpy scipy matplotlib sympy cython pandas networkx pytest pip h5py tensorflow keras scikit-learn
source activate test-environment
conda update --quiet numpy scipy matplotlib sympy cython
conda update --quiet --yes numpy scipy matplotlib sympy cython pandas networkx pytest pip h5py tensorflow keras scikit-learn
pip install --quiet --ignore-installed -r requirements.txt -r requirements-ci.txt
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
source activate test-environment
pip install --quiet -e .
pip install -e .
pytest --cov=megnet --cov-report html:coverage_reports megnet
pycodestyle megnet
coveralls
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v1.1.4
* Update to tensorflow.keras API instead of using keras

# v1.1.3
* Download mvl_models from figshare if not present

Expand Down
2 changes: 1 addition & 1 deletion megnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.3"
__version__ = "1.1.4"

0 comments on commit 5389b45

Please sign in to comment.