Skip to content

Commit

Permalink
Updated for 4.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
audunarn committed Aug 16, 2023
1 parent 1a2c947 commit 302824d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion any_files/main_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -6744,7 +6744,8 @@ def openfile(self, defined = None, alone = False):
import example_data as ex
except ModuleNotFoundError:
# This is due to pyinstaller issues.
import ANYstructure.any_files.example_data as ex
import any_files.example_data as ex
#import ANYstructure.any_files.example_data as ex

main_dict = ex.prescriptive_main_dict
map_end = {'C': 'Continuous', 'S': 'Sniped'}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def readme():
name='ANYstructure', # Required
url = 'https://github.com/audunarn/ANYstructure',
entry_points={"console_scripts": ['ANYstructure = any_files.__main__:main']},
version='4.9', # Required
version='4.9.1', # Required
license='MIT',
description='A plate field optimization tool for offshore structures calculated according to DNV standards',
long_description = readme(),
Expand Down

0 comments on commit 302824d

Please sign in to comment.