/usr/lib/python2.7/dist-packages/ase/version.py is in python-ase 3.9.1.4567-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | # Copyright (C) 2003 CAMP
# Please see the accompanying LICENSE file for further information.
version_base = '3.9.1'
try:
from ase.svnversion import svnversion
except ImportError:
version = version_base
else:
version = version_base + '.' + svnversion
|