Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down