From 4e9990cb17aa8c2b1a09685f1bb4cdb2ebaa0808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lapr=C3=A9?= Date: Fri, 21 Jun 2024 20:24:18 +0200 Subject: [PATCH 1/2] docs: switch to pydata theme --- Pipfile | 1 + Pipfile.lock | 37 +++++++++++++++++++++++++++++++++++-- docs/conf.py | 2 +- 3 files changed, 37 insertions(+), 3 deletions(-) diff --git a/Pipfile b/Pipfile index 5732139c..5d053a31 100644 --- a/Pipfile +++ b/Pipfile @@ -26,6 +26,7 @@ PyYAML = "*" # "flake8" = "*" twine = "*" coverage = ">=6.0b1" +pydata-sphinx-theme = "*" [requires] python_version = "3.10" diff --git a/Pipfile.lock b/Pipfile.lock index b3693711..a0c40d99 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "91239d16a44c7e7c90d9e06cab518833769d189d61420f38e291a22dd16e9d9a" + "sha256": "568f01e32973ce262e56f9685750120e4cd1c5e9ff58cf9b5ba32ee7f699b470" }, "pipfile-spec": 6, "requires": { @@ -178,7 +178,7 @@ }, "piconnect": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.9'", "path": "." }, "pycparser": { @@ -308,6 +308,14 @@ } }, "develop": { + "accessible-pygments": { + "hashes": [ + "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872", + "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7" + ], + "markers": "python_version >= '3.9'", + "version": "==0.0.5" + }, "alabaster": { "hashes": [ "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65", @@ -340,6 +348,14 @@ "markers": "python_version >= '3.8'", "version": "==2.15.0" }, + "beautifulsoup4": { + "hashes": [ + "sha256:7e05ad0b6c26108d9990e2235e8a9b4e2c03ead6f391ceb60347f8ebea6b80ba", + "sha256:c684ddec071aa120819889aa9e8940f85c3f3cdaa08e23b9fa26510387897bd5" + ], + "markers": "python_full_version >= '3.6.0'", + "version": "==4.13.0b2" + }, "bracex": { "hashes": [ "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb", @@ -913,6 +929,15 @@ "markers": "python_version >= '3.8'", "version": "==2.3.3" }, + "pydata-sphinx-theme": { + "hashes": [ + "sha256:7eee6b8fe0362ccbce30de34d61ce721cddf617c0ffd137d3c6856ee43f55e40", + "sha256:ffbfec78b487dd4502e8edbc8f1f042a2998db817e6fbe88679e40bc0d2973d8" + ], + "index": "pypi", + "markers": "python_version >= '3.9'", + "version": "==0.15.4rc0" + }, "pygments": { "hashes": [ "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", @@ -1111,6 +1136,14 @@ ], "version": "==2.2.0" }, + "soupsieve": { + "hashes": [ + "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", + "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7" + ], + "markers": "python_version >= '3.8'", + "version": "==2.5" + }, "sphinx": { "hashes": [ "sha256:413f75440be4cacf328f580b4274ada4565fb2187d696a84970c23f77b64d8c3", diff --git a/docs/conf.py b/docs/conf.py index 0ba68d9a..bdbb1a77 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -120,7 +120,7 @@ def __getattr__(cls, name) -> MagicMock: # type: ignore # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = "default" +html_theme = "pydata_sphinx_theme" # html_theme_path = sphinx_bootstrap_theme.get_html_theme_path() # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the From f8082f888afd913452605fee4e7cd907db0bca97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lapr=C3=A9?= Date: Fri, 21 Jun 2024 20:45:40 +0200 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20Bump=20version:=200.11.0=20?= =?UTF-8?q?=E2=86=92=200.11.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PIconnect/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PIconnect/__init__.py b/PIconnect/__init__.py index f0f3ace6..2251d803 100644 --- a/PIconnect/__init__.py +++ b/PIconnect/__init__.py @@ -8,7 +8,7 @@ # pragma pylint: enable=unused-import -__version__ = "0.11.0" +__version__ = "0.11.1" __sdk_version = tuple(int(x) for x in AF.PISystems().Version.split(".")) __all__ = [ diff --git a/pyproject.toml b/pyproject.toml index fc5c83c9..670a3d30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ convention = "numpy" [tool.bumpversion] -current_version = "0.11.0" +current_version = "0.11.1" tag = false commit = true message = "chore: Bump version: {current_version} → {new_version}"