Skip to content

Commit 6ed21af

Browse files
authored
Pin exact version of pydata-sphinx-theme (#106)
* Pin exact version of pydata-sphinx-theme * Add dependabot config to update python dependencies * Bump version of Python orb * Build on Python 3.11
1 parent 91133fe commit 6ed21af

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
version: 2.1
33

44
orbs:
5-
python: circleci/python@1.2.1
5+
python: circleci/python@3.2.0
66

77
jobs:
88
build_docs:
9-
executor: python/default
9+
executor:
10+
name: python/default
11+
tag: "3.11"
1012
steps:
1113
- checkout
1214
- python/install-packages:

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,12 @@ updates:
99
actions:
1010
patterns:
1111
- "*"
12+
13+
- package-ecosystem: "pip"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
groups:
18+
python:
19+
patterns:
20+
- "*"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
"Topic :: Documentation :: Sphinx",
2020
]
2121
dependencies = [
22-
"pydata-sphinx-theme>=0.13.1",
22+
"pydata-sphinx-theme==0.15.4",
2323
"matplotlib",
2424
"sphinx-design",
2525
]

0 commit comments

Comments
 (0)