File tree Expand file tree Collapse file tree 7 files changed +11
-7
lines changed Expand file tree Collapse file tree 7 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ python3 -m twine upload --repository testpypi dist/*
22
22
23
23
Install the package:
24
24
--------------------
25
- pip3 install planetary-system-stacker==0.9.1
25
+ pip3 install planetary-system-stacker==0.9.2
26
26
or, to upgrade from an earlier version:
27
27
pip3 install --upgrade planetary-system-stacker
28
28
29
29
Or, to install / upgrade the package from the test server:
30
30
------------------------------------------------
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
32
32
pip3 install --upgrade --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple planetary-system-stacker
33
33
34
34
On Windows, the location of the MKL library is: <Python3.6>\Library\bin
Original file line number Diff line number Diff line change 31
31
from miscellaneous import Miscellaneous
32
32
33
33
# Set the current software version.
34
- PSS_Version = "PlanetarySystemStacker 0.9.1 "
34
+ PSS_Version = "PlanetarySystemStacker 0.9.2 "
35
35
# PSS_Version = "PlanetarySystemStacker"
36
36
37
37
Original file line number Diff line number Diff line change @@ -204,6 +204,10 @@ def setup_configuration(self):
204
204
self .configuration = Configuration ()
205
205
self .configuration .initialize_configuration (read_from_file = False )
206
206
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
+
207
211
# Modify the standard configuration as specified in the command line arguments.
208
212
self .configuration .global_parameters_store_protocol_with_result = arguments .protocol
209
213
self .configuration .global_parameters_protocol_level = arguments .protocol_detail
Original file line number Diff line number Diff line change 3
3
with open ("README.md" , "r" ) as fh :
4
4
long_description = fh .read ()
5
5
6
- release_tag = "0.9.1 "
6
+ release_tag = "0.9.2 "
7
7
8
8
setuptools .setup (
9
9
name = "planetary-system-stacker" ,
Original file line number Diff line number Diff line change 3
3
with open ("README.md" , "r" ) as fh :
4
4
long_description = fh .read ()
5
5
6
- release_tag = "0.9.1 .2"
6
+ release_tag = "0.9.2 .2"
7
7
8
8
setuptools .setup (
9
9
name = "planetary-system-stacker" ,
Original file line number Diff line number Diff line change 3
3
with open ("README.md" , "r" ) as fh :
4
4
long_description = fh .read ()
5
5
6
- release_tag = "0.9.1 .3"
6
+ release_tag = "0.9.2 .3"
7
7
8
8
setuptools .setup (
9
9
name = "planetary-system-stacker" ,
Original file line number Diff line number Diff line change 3
3
with open ("README.md" , "r" ) as fh :
4
4
long_description = fh .read ()
5
5
6
- release_tag = "0.9.1 .1"
6
+ release_tag = "0.9.2 .1"
7
7
8
8
setuptools .setup (
9
9
name = "planetary-system-stacker" ,
You can’t perform that action at this time.
0 commit comments