Skip to content

Commit ffeb2b1

Browse files
committed
Update version number
1 parent c6e356d commit ffeb2b1

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
# QuickFF is a code to quickly derive accurate force fields from ab initio input.
3-
# Copyright (C) 2012 - 2015 Louis Vanduyfhuys <Louis.Vanduyfhuys@UGent.be>
3+
# Copyright (C) 2012 - 2019 Louis Vanduyfhuys <Louis.Vanduyfhuys@UGent.be>
44
# Steven Vandenbrande <Steven.Vandenbrande@UGent.be>,
55
# Toon Verstraelen <Toon.Verstraelen@UGent.be>, Center for Molecular Modeling
66
# (CMM), Ghent University, Ghent, Belgium; all rights reserved unless otherwise
@@ -53,7 +53,7 @@
5353

5454
# General information about the project.
5555
project = u'QuickFF'
56-
copyright = u'2018, Louis Vanduyfhuys, Center for Molecular Modeling, Ghent University'
56+
copyright = u'2019, Louis Vanduyfhuys, Center for Molecular Modeling, Ghent University'
5757

5858
# The version info for the project you're documenting, acts as replacement for
5959
# |version| and |release|, also used in various other places throughout the
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = '2.2'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '2.2.2'
65+
release = '2.2.4'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

quickff/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
__all__ = ['version', 'log']
3333

34-
version = '2.2.1'
34+
version = '2.2.4'
3535

3636
header = """
3737
________________/\\\\\\_________/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\__/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\_________________

quickff/perturbation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ def prepare(self, do_terms):
246246
for the generate method.
247247
'''
248248
trajectories = []
249+
#TODO: make settings options out of the range of the ics in the trajectories as well as the number of steps
249250
for term in do_terms:
250251
assert term.kind in [0,2,11,12], 'Only Harmonic, Fues, MM3Quartic or MM3Bend terms supported for pert traj, got term.kind=%i' %term.kind
251252
ic = self.valence.iclist.ictab[self.valence.vlist.vtab[term.index]['ic0']]

quickff/valence.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,7 @@ def init_dihedral_terms(self, thresshold=20*deg):
604604
log.dump('Added %i Cosine dihedral terms (of which %i are described using Chebychev terms)' %(ncos+ncheb, ncheb))
605605

606606
def init_oop_terms(self, thresshold_zero=5e-2*angstrom):
607+
#TODO: make settings option ofo thresshold_zero
607608
'''
608609
Initialize all out-of-plane terms in the system based on the oops
609610
attribute of the system instance. All oops are given harmonic

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
setup(
6666
name='QuickFF',
67-
version='2.2.3',
67+
version='2.2.4',
6868
description='Python library to quickly derive force fields from ab initio training data.',
6969
author='Louis Vanduyfhuys',
7070
author_email='Louis.Vanduyfhuys@UGent.be',

0 commit comments

Comments
 (0)