From 1a91828d496df92541e83b9d2d16f6286961d670 Mon Sep 17 00:00:00 2001 From: Shyue Ping Ong Date: Mon, 26 Feb 2024 06:56:16 -0800 Subject: [PATCH] Update dev docs --- docs/monty.functools.md | 3 --- docs/monty.os.md | 1 - docs/monty.re.md | 2 -- monty/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/monty.functools.md b/docs/monty.functools.md index 15bc0fca9..93fd41b68 100644 --- a/docs/monty.functools.md +++ b/docs/monty.functools.md @@ -73,13 +73,10 @@ becomes The decorated main accepts two new arguments: > prof_file: Name of the output file with profiling data - > ```none > If not given, a temporary file is created. > ``` - > sortby: Profiling data are sorted according to this value. - > ```none > default is “time”. See sort_stats. > ``` diff --git a/docs/monty.os.md b/docs/monty.os.md index 8d85d1dc8..96184b2e2 100644 --- a/docs/monty.os.md +++ b/docs/monty.os.md @@ -15,7 +15,6 @@ performing some tasks, and returns to the original working directory afterwards. E.g., > with cd(“/my/path/”): - > ```none > do_something() > ``` diff --git a/docs/monty.re.md b/docs/monty.re.md index 7082093fb..b7e419ef9 100644 --- a/docs/monty.re.md +++ b/docs/monty.re.md @@ -25,11 +25,9 @@ A powerful regular expression version of grep. * **Returns** > {key1: [[[matches…], lineno], [[matches…], lineno], - > ```none > [[matches…], lineno], …], > ``` - > key2: …} For reverse reads, the lineno is given as a -ve number. Please note diff --git a/monty/__init__.py b/monty/__init__.py index 951625053..b90d32fb8 100644 --- a/monty/__init__.py +++ b/monty/__init__.py @@ -7,7 +7,7 @@ __author__ = "Shyue Ping Ong" __copyright__ = "Copyright 2014, The Materials Virtual Lab" -__version__ = "2024.2.2" +__version__ = "2024.2.26" __maintainer__ = "Shyue Ping Ong" __email__ = "ongsp@ucsd.edu" __date__ = "Oct 12 2020" diff --git a/pyproject.toml b/pyproject.toml index 87cb7dd39..e0fc424df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ dependencies = [ ] -version = "2024.2.2" +version = "2024.2.26" [tool.setuptools] packages = ["monty"]