Skip to content

Commit

Permalink
Merge branch 'develop' into mp_import_support
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannipizzi authored Oct 26, 2018
2 parents 5498e26 + 348665e commit 2a38624
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiida/sphinxext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
__version__ = '0.1.0'

import aiida
from . import workchain


Expand All @@ -25,4 +25,4 @@ def setup(app):
"""
workchain.setup_aiida_workchain(app)

return {'version': __version__, 'parallel_read_safe': True}
return {'version': aiida.__version__, 'parallel_read_safe': True}
11 changes: 11 additions & 0 deletions aiida/work/job_calcs.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
# -*- 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/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
"""
Module containing utilities and classes relating to job calculations running
on systems that require transport.
"""

from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
import contextlib
from functools import partial
Expand Down

0 comments on commit 2a38624

Please sign in to comment.