Skip to content

Commit

Permalink
test version
Browse files Browse the repository at this point in the history
  • Loading branch information
htz1992213 committed Dec 16, 2021
1 parent ccdee83 commit 249ee14
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Change log
==========

v0.2.4
------


v0.2.3
------


v0.2.2
------

Expand Down
Empty file added docs/source/latest_changes.rst
Empty file.
2 changes: 1 addition & 1 deletion mdgo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
__email__ = "[email protected]"
__maintainer__ = "Tingzheng Hou"
__maintainer_email__ = "[email protected]"
__version__ = "0.2.2"
__version__ = "0.2.4"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
if __name__ == "__main__":
setup(
name="mdgo",
version="0.2.2",
version="0.2.4",
description="A codebase for MD simulation setup and results analysis.",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ def make_doc(ctx):
changes.append("\n" + "\n".join(toks[1].strip().split("\n")[0:-1]))
changes = ("-" * n).join(changes)

with open("docs_rst/latest_changes.rst", "w") as f:
with open("docs/source/latest_changes.rst", "w") as f:
f.write(changes)

with cd("docs_rst"):
with cd("docs/source"):
ctx.run("cp ../CHANGES.rst change_log.rst")
ctx.run("rm mdgo.*.rst", warn=True)
ctx.run("sphinx-apidoc --implicit-namespaces --separate -d 7 -o . -f ../mdgo")
Expand Down

0 comments on commit 249ee14

Please sign in to comment.