Skip to content

Commit

Permalink
Fix cfgui packaging + release 3.6.3-1
Browse files Browse the repository at this point in the history
  • Loading branch information
stefraynaud committed Mar 1, 2019
1 parent c5bda9f commit afa8c37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/python/vacumm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

__project__ = 'vacumm'
__version__ = '3.6.3'
__release__ = '0'
__release__ = '1'
__date__ = '2019-03-01'
__author__ = 'Stephane Raynaud, Jonathan Wilkins, Guillaume Charria'
__email__ = '[email protected], [email protected], [email protected]'
Expand Down
1 change: 1 addition & 0 deletions lib/python/vacumm/misc/cfgui/resources/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
def configuration(parent_package='',top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration('resources', parent_package, top_path)
config.add_subpackage('ui')
return config

if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion lib/python/vacumm/misc/cfgui/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def configuration(parent_package='',top_path=None):
config = Configuration('cfgui', parent_package, top_path)
config.add_subpackage('controllers')
config.add_subpackage('models')
config.add_subpackage('resources/ui')
config.add_subpackage('resources')
config.add_subpackage('views')
config.add_subpackage('utils')
config.add_data_files('cfgui')
Expand Down

0 comments on commit afa8c37

Please sign in to comment.