-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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 <[email protected]>
- Loading branch information
1 parent
4a83ed8
commit 864b7e8
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = "1.21.3" | ||
__version__ = "1.21.4" | ||
from pypolychord.settings import PolyChordSettings | ||
from pypolychord.polychord import run_polychord |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,7 +125,7 @@ def run(self): | |
setup(name=NAME, | ||
version=get_version(), | ||
description='Python interface to PolyChord ' + get_version(), | ||
url='https://ccpforge.cse.rl.ac.uk/gf/project/polychord/', | ||
url='https://github.com/PolyChord/PolyChordLite', | ||
author='Will Handley', | ||
author_email='[email protected]', | ||
license='PolyChord', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ subroutine write_opening_statement(settings) | |
write(stdout_unit,'("")') | ||
write(stdout_unit,'("PolyChord: Next Generation Nested Sampling")') | ||
write(stdout_unit,'("copyright: Will Handley, Mike Hobson & Anthony Lasenby")') | ||
write(stdout_unit,'(" version: 1.21.3")') | ||
write(stdout_unit,'(" version: 1.21.4")') | ||
write(stdout_unit,'(" release: 9th Jan 2024")') | ||
write(stdout_unit,'(" email: [email protected]")') | ||
write(stdout_unit,'("")') | ||
|