From e3db9c098047554376dc919a959f493381a21d8d Mon Sep 17 00:00:00 2001 From: Shyue Ping Ong Date: Thu, 9 Jan 2025 08:35:32 -0800 Subject: [PATCH] Update dev docs --- docs/index.md | 2 +- docs/monty.functools.md | 3 --- docs/monty.os.md | 1 - docs/monty.re.md | 2 -- pyproject.toml | 2 +- 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/index.md b/docs/index.md index a92812530..aceb61bd2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -30,6 +30,6 @@ Monty is created to serve as a complement to the Python standard library. It provides suite of tools to solve many common problems, and hopefully, be a resource to collect the best solutions. -Monty supports Python 3.10+. +Monty supports Python 3.9+. Please visit the [official docs](https://materialsvirtuallab.github.io/monty) for more information. 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/pyproject.toml b/pyproject.toml index 225580e26..212fe94d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ dependencies = [ "ruamel.yaml", "numpy", ] -version = "2025.1.3" +version = "2025.1.9" [project.optional-dependencies] ci = [