From ddfb8cb8e0309a6edd3205de9ba2aeb411030bf2 Mon Sep 17 00:00:00 2001 From: hannalee2 Date: Thu, 4 Jul 2024 09:33:42 -0700 Subject: [PATCH 1/2] Update the documentation version --- docs/source/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f0f28ab1..aa81ec3f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -8,7 +8,6 @@ import os import sys from datetime import date -from parallax import __version__ as version from docutils.parsers.rst import roles from docutils import nodes @@ -20,7 +19,7 @@ current_year = date.today().year copyright = f"{current_year}, {INSTITUTE_NAME}" author = INSTITUTE_NAME -release = version # Automatically set version from parallax package +release = "0.0.1" # Automatically set version from parallax package # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration From c3d469d02b798a60d269c25369e1729b4999769e Mon Sep 17 00:00:00 2001 From: hannalee2 Date: Thu, 4 Jul 2024 09:34:00 -0700 Subject: [PATCH 2/2] Update release version --- parallax/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallax/__init__.py b/parallax/__init__.py index 6aa71258..793e1882 100644 --- a/parallax/__init__.py +++ b/parallax/__init__.py @@ -4,7 +4,7 @@ import os -__version__ = "0.37.16" +__version__ = "0.37.17" # allow multiple OpenMP instances os.environ["KMP_DUPLICATE_LIB_OK"] = "True"