From 7e2a41a46db3c84c97915852eacbe672f7d32a11 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 10 Oct 2024 12:44:54 +0200 Subject: [PATCH 1/3] CircleCI: Addd Python 3.13 to the testing https://devguide.python.org/versions/ --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dfe6f3644..300685df7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -81,11 +81,22 @@ jobs: version: py312 sphinx-version: "72,73,74,80,latest,dev" + py313: + docker: + - image: 'cimg/python:3.13' + steps: + - run-tox: + version: py313 + sphinx-version: "72,73,74,80,latest,dev" + workflows: version: 2 tests: jobs: - build + - py313: + requires: + - build - py312: requires: - build From 7484b71b56165721c35adb68fe8fa475d86260d8 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 16 Oct 2024 20:42:11 +0200 Subject: [PATCH 2/3] contributing.rst: Fix typo --- docs/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.rst b/docs/contributing.rst index fe54e1cf1..4c11cf67a 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -227,7 +227,7 @@ Releasing the theme To release a new version of the theme, core team will take the following steps: -#. Install the required depedencies with ``pip install '.[dev]'``. +#. Install the required dependencies with ``pip install '.[dev]'``. #. Bump the version by running ``bump2version [major|minor|patch|dev]``. This will automatically increase the correct part(s) of the version number, you do not need to specify the exact version number. From ef3fa5e7ceb3d54646c49c319a13dfdd10280327 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 28 Oct 2024 17:06:38 +0100 Subject: [PATCH 3/3] Modernize tox.ini --- tox.ini | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index a010796ac..5eef94e6f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,8 @@ [tox] envlist = py{38,39,310}-sphinx{60,61,62,70,71}{-qa} - py{39,310,311,312}-sphinx{72,73,74,80}{-qa} - py{310,311,312}-sphinx{latest,dev}{-qa} + py{39,310,311,312,313}-sphinx{72,73,74,80,81}{-qa} + py{310,311,312,313}-sphinx{latest,dev}{-qa} [testenv] setenv = @@ -16,7 +16,10 @@ deps = sphinx70: Sphinx>=7.0,<7.1 sphinx71: Sphinx>=7.1,<7.2 sphinx72: Sphinx>=7.2,<7.3 + sphinx73: Sphinx>=7.3,<7.4 + sphinx74: Sphinx>=7.4,<7.5 sphinx80: Sphinx>=8.0,<8.1 + sphinx81: Sphinx>=8.1,<8.2 sphinxlatest: Sphinx sphinxdev: https://github.com/sphinx-doc/sphinx/archive/refs/heads/master.zip allowlist_externals =