Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
language: python
python: "3.6"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
env:
global:
- CC=gcc-4.8
- CXX=g++-4.8
matrix:
- TENSORFLOW_VERSION=1.8
- TENSORFLOW_VERSION=1.12
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# install_requires = ['xml']
install_requires=['numpy', 'scipy']
setup_requires=['setuptools-git-version']
setup_requires=['setuptools_scm']

# add cmake as a build requirement if cmake>3.0 is not installed
try:
Expand All @@ -38,7 +38,7 @@
setup(
name="deepmd-kit",
setup_requires=setup_requires,
version_format='{tag}.dev{commitcount}_{gitsha}',
use_scm_version={'write_to': 'source/train/_version.py'},
author="Han Wang",
author_email="wang_han@iapcm.ac.cn",
description="A deep learning package for many-body potential energy representation and molecular dynamics",
Expand Down