Skip to content
Open
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
except ImportError:
from distutils.core import setup
#from catmap import __version__ as version
__version__ = "0.3.1"
__version__ = "0.4.1"
__python_version__ = sys.version

maintainer = 'Andrew J. Medford'
Expand Down Expand Up @@ -39,7 +39,7 @@
'mpmath',
'numpy',
'graphviz',
'ase' if sys.version >= '3.5' else 'ase==3.17']
'ase' if sys.version_info >= (3, 5) else 'ase==3.17']

license = 'COPYING.txt'
long_description = open('README.md').read()
Expand Down