/usr/share/pyshared/ase/version.py is in python-ase 3.6.0.2515-1.
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.6.0'
try:
from ase.svnversion import svnversion
except ImportError:
version = version_base
else:
version = version_base + '.' + svnversion
|