Skip to content

Commit 864b7e8

Browse files
General code typo clean-up (#103)
* fix errant backslash * Adjusted the setup.py to not point to ccpforge * Minor typo picked up in #94 * version bump --------- Co-authored-by: Will Handley <wh260@cam.ac.uk>
1 parent 4a83ed8 commit 864b7e8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:target: https://arxiv.org/abs/1506.00171
66
:alt: Open-access paper
77

8-
PolyChord v 1.21.3
8+
PolyChord v 1.21.4
99

1010
Will Handley, Mike Hobson & Anthony Lasenby
1111

pypolychord/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.21.3"
1+
__version__ = "1.21.4"
22
from pypolychord.settings import PolyChordSettings
33
from pypolychord.polychord import run_polychord

pypolychord/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def _dataframes_for_printing(self):
215215
for paramname in self._samples_table.columns[2:]:
216216
mean = np.mean(np.array( self._samples_table[paramname]) )
217217
std = np.std(np.array( self._samples_table[paramname]) )
218-
stats_dict[paramname] = '%.3E +\- %.3E' % (mean, std)
218+
stats_dict[paramname] = '%.3E +/- %.3E' % (mean, std)
219219

220220
lst.append(pd.Series(stats_dict))
221221
return lst

run_pypolychord.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ def dumper(live, dead, logweights, logZ, logZerr):
7474
except ImportError:
7575
print("Install matplotlib and getdist for plotting examples")
7676

77-
print("Install anesthetic or getdist for for plotting examples")
77+
print("Install anesthetic or getdist for plotting examples")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def run(self):
125125
setup(name=NAME,
126126
version=get_version(),
127127
description='Python interface to PolyChord ' + get_version(),
128-
url='https://ccpforge.cse.rl.ac.uk/gf/project/polychord/',
128+
url='https://github.com/PolyChord/PolyChordLite',
129129
author='Will Handley',
130130
author_email='wh260@cam.ac.uk',
131131
license='PolyChord',

src/polychord/feedback.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ subroutine write_opening_statement(settings)
2828
write(stdout_unit,'("")')
2929
write(stdout_unit,'("PolyChord: Next Generation Nested Sampling")')
3030
write(stdout_unit,'("copyright: Will Handley, Mike Hobson & Anthony Lasenby")')
31-
write(stdout_unit,'(" version: 1.21.3")')
31+
write(stdout_unit,'(" version: 1.21.4")')
3232
write(stdout_unit,'(" release: 9th Jan 2024")')
3333
write(stdout_unit,'(" email: wh260@mrao.cam.ac.uk")')
3434
write(stdout_unit,'("")')

0 commit comments

Comments
 (0)