Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
lvduyfhu committed Nov 29, 2019
1 parent c6e356d commit ffeb2b1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# QuickFF is a code to quickly derive accurate force fields from ab initio input.
# Copyright (C) 2012 - 2015 Louis Vanduyfhuys <[email protected]>
# Copyright (C) 2012 - 2019 Louis Vanduyfhuys <[email protected]>
# Steven Vandenbrande <[email protected]>,
# Toon Verstraelen <[email protected]>, Center for Molecular Modeling
# (CMM), Ghent University, Ghent, Belgium; all rights reserved unless otherwise
Expand Down Expand Up @@ -53,7 +53,7 @@

# General information about the project.
project = u'QuickFF'
copyright = u'2018, Louis Vanduyfhuys, Center for Molecular Modeling, Ghent University'
copyright = u'2019, Louis Vanduyfhuys, Center for Molecular Modeling, Ghent University'

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

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion quickff/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

__all__ = ['version', 'log']

version = '2.2.1'
version = '2.2.4'

header = """
________________/\\\\\\_________/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\__/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\_________________
Expand Down
1 change: 1 addition & 0 deletions quickff/perturbation.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ def prepare(self, do_terms):
for the generate method.
'''
trajectories = []
#TODO: make settings options out of the range of the ics in the trajectories as well as the number of steps
for term in do_terms:
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
ic = self.valence.iclist.ictab[self.valence.vlist.vtab[term.index]['ic0']]
Expand Down
1 change: 1 addition & 0 deletions quickff/valence.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,7 @@ def init_dihedral_terms(self, thresshold=20*deg):
log.dump('Added %i Cosine dihedral terms (of which %i are described using Chebychev terms)' %(ncos+ncheb, ncheb))

def init_oop_terms(self, thresshold_zero=5e-2*angstrom):
#TODO: make settings option ofo thresshold_zero
'''
Initialize all out-of-plane terms in the system based on the oops
attribute of the system instance. All oops are given harmonic
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

setup(
name='QuickFF',
version='2.2.3',
version='2.2.4',
description='Python library to quickly derive force fields from ab initio training data.',
author='Louis Vanduyfhuys',
author_email='[email protected]',
Expand Down

0 comments on commit ffeb2b1

Please sign in to comment.