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

Commit

Permalink
fix local_env
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi Chen committed Oct 3, 2019
2 parents b109355 + 3e7465a commit 62e6430
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pandas==0.25.1
pymatgen==2019.10.2
pymatgen==2019.10.3
tensorflow==2.0.0
keras==2.3.0
scikit-learn==0.21.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
download_url='https://github.com/materialsvirtuallab/megnet',
license='BSD',
install_requires=['keras', 'numpy', 'tensorflow', "scikit-learn",
'pymatgen', 'monty'],
'pymatgen>=2019.10.3', 'monty'],
extras_require={
'model_saving': ['h5py'],
'molecules': ['openbabel', 'rdkit']
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def update_changelog(ctx):
def release(ctx, notest=False):
ctx.run("rm -r dist build megnet.egg-info", warn=True)
if not notest:
ctx.run("nosetests")
ctx.run("pytest megnet")
publish(ctx)
release_github(ctx)

0 comments on commit 62e6430

Please sign in to comment.