Skip to content

Commit 410e75b

Browse files
committed
Postprocessing disabled in command line mode (otherwise program got stuck)
1 parent ce638a8 commit 410e75b

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

PyPI_Instructions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ python3 -m twine upload --repository testpypi dist/*
2222

2323
Install the package:
2424
--------------------
25-
pip3 install planetary-system-stacker==0.9.1
25+
pip3 install planetary-system-stacker==0.9.2
2626
or, to upgrade from an earlier version:
2727
pip3 install --upgrade planetary-system-stacker
2828

2929
Or, to install / upgrade the package from the test server:
3030
------------------------------------------------
31-
pip3 install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple planetary-system-stacker==0.9.1
31+
pip3 install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple planetary-system-stacker==0.9.2
3232
pip3 install --upgrade --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple planetary-system-stacker
3333

3434
On Windows, the location of the MKL library is: <Python3.6>\Library\bin

planetary_system_stacker/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from miscellaneous import Miscellaneous
3232

3333
# Set the current software version.
34-
PSS_Version = "PlanetarySystemStacker 0.9.1"
34+
PSS_Version = "PlanetarySystemStacker 0.9.2"
3535
# PSS_Version = "PlanetarySystemStacker"
3636

3737

planetary_system_stacker/pss_console.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,10 @@ def setup_configuration(self):
204204
self.configuration = Configuration()
205205
self.configuration.initialize_configuration(read_from_file=False)
206206

207+
# In the standard configuration postprocessing is included in the workflow. This does not
208+
# make sense in command line mode.
209+
self.configuration.global_parameters_include_postprocessing = False
210+
207211
# Modify the standard configuration as specified in the command line arguments.
208212
self.configuration.global_parameters_store_protocol_with_result = arguments.protocol
209213
self.configuration.global_parameters_protocol_level = arguments.protocol_detail

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
release_tag = "0.9.1"
6+
release_tag = "0.9.2"
77

88
setuptools.setup(
99
name="planetary-system-stacker",

setup_linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
release_tag = "0.9.1.2"
6+
release_tag = "0.9.2.2"
77

88
setuptools.setup(
99
name="planetary-system-stacker",

setup_macos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
release_tag = "0.9.1.3"
6+
release_tag = "0.9.2.3"
77

88
setuptools.setup(
99
name="planetary-system-stacker",

setup_windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
release_tag = "0.9.1.1"
6+
release_tag = "0.9.2.1"
77

88
setuptools.setup(
99
name="planetary-system-stacker",

0 commit comments

Comments
 (0)