Skip to content

Commit

Permalink
Prepare for the release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakutovicha committed Jan 10, 2019
1 parent d7e0f90 commit daf9774
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion aiida_raspa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
# For further information please visit http://www.aiida.net #
##############################################################################

__version__ = "0.2.2"
__version__ = "0.3.0"

# EOF
11 changes: 1 addition & 10 deletions aiida_raspa/parsers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
# -*- coding: utf-8 -*-
##############################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/yakutovicha/aiida-raspa #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
##############################################################################

from __future__ import absolute_import
from six.moves import range
__version__ = "0.2.2"
__version__ = "0.3.0"

import re
from aiida.parsers.parser import Parser
Expand Down
7 changes: 6 additions & 1 deletion examples/simple_calculations/test_raspa_blocked_pockets.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
@click.command('cli')
@click.argument('codelabel')
@click.option(
'--block_pockets', '-b', required=True, type=int, help='Block pockets')
'--block_pockets',
'-b',
required=True,
type=int,
help='Block pockets node, can be updained using'
' test_raspa_attach_file/run_zeopp_block_pockets.py')
@click.option('--submit', is_flag=True, help='Actually submit calculation')
def main(codelabel, block_pockets, submit):
code = test_and_get_code(codelabel, expected_code_type='raspa')
Expand Down
3 changes: 2 additions & 1 deletion setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"classifiers": [
"Programming Language :: Python"
],
"version": "0.2.2",
"version": "0.3.0",
"setup_requires": ["reentry"],
"install_requires": [
"aiida >= 0.9"
Expand All @@ -32,4 +32,5 @@
"prospector==1.1.5",
"pylint==1.9.3"
]
}
}

0 comments on commit daf9774

Please sign in to comment.