Skip to content

Commit 0dea9d9

Browse files
committed
minor enhancements
1 parent 7f00014 commit 0dea9d9

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

CHANGES.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ To access the latest release of the package, visit [the ParaMonte GitHub reposit
77

88
### **Version 1.1.0** -- May 27, 2020
99

10-
**Bug fixes**
10+
**New features**
1111

12-
+ The build Batch-script for examples on Windows now properly builds and runs coarray applications in parallel.
13-
+ The fully-deterministic restart functionality is now functional also when chainFileFormat="verbose" in ParaDRAM simulations.
12+
+ ParaMonte Interface to MATLAB in addition to the currently-available C/C++/Fortran/Python Programming languages.
1413

1514
**Enhancements**
1615

17-
+ The simulation summary report in output report file has been improved.
16+
+ The simulation summary report in the output report file has been improved.
1817
+ The error handling in the build Batch-scripts on Windows is now greatly improved.
1918

20-
**New features**
19+
**Bug fixes**
2120

22-
+ ParaMonte Interface to MATLAB in addition to the currently-available C/C++/Fortran/Python Programming languages.
21+
+ The build Batch-script for the ParaMonte examples on Windows now properly builds and runs coarray applications in parallel.
22+
+ The fully-deterministic restart functionality is now functional also when chainFileFormat="verbose" in ParaDRAM simulations.
2323

2424
**Compiler support**
2525

src/interface/Python/setup/setup.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,9 @@
3636

3737
import setuptools
3838

39-
with open("README.md", "r") as fh:
40-
readmeFileContents = fh.read()
39+
with open("README.md", "r") as fh: readmeFileContents = fh.read()
4140

42-
with open("paramonte/.VERSION") as versionFile:
43-
version = versionFile.readline()
44-
versionFile.close()
41+
with open("paramonte/auxil/.VERSION_INTERFACE") as versionFile: version = versionFile.readline()
4542

4643
setuptools.setup( name = "paramonte"
4744
, version = version

0 commit comments

Comments
 (0)