Skip to content

Commit 4efbdbc

Browse files
authored
Merge pull request #1314 from readthedocs/agj/fix-ci
Unbreak CI config
2 parents 89085ae + 5f2ba04 commit 4efbdbc

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
version: 2.1
22

3+
orbs:
4+
node: circleci/[email protected]
5+
36
commands:
47
run-tox:
58
description: "Run tox"
@@ -17,6 +20,8 @@ commands:
1720
description: "Ensure built assets are up to date"
1821
steps:
1922
- checkout
23+
- node/install:
24+
node-version: '14.20'
2025
- run: npm ci
2126
- run: npm run build
2227
- run:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ def run(self):
120120
install_requires=[
121121
'sphinx>=1.6',
122122
'docutils<0.18',
123+
'Jinja2<3.1',
123124
],
124125
tests_require=[
125126
'pytest',

sphinx_rtd_theme/static/css/theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sass/_theme_rst.sass

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -515,10 +515,10 @@
515515
border-radius: $base-line-height / 6
516516
padding: ($base-line-height / 10) ($base-line-height / 4)
517517
margin: auto ($base-line-height / 12)
518-
:not(kbd) > kbd,
519-
:not(kbd) > .kbd,
520-
:not(.kbd) > kbd,
521-
:not(.kbd) > .kbd
518+
&:not(kbd) > kbd,
519+
&:not(kbd) > .kbd,
520+
&:not(.kbd) > kbd,
521+
&:not(.kbd) > .kbd
522522
color: inherit
523523
font-size: 80%
524524
background-color: lighten($text-light, 30%)

0 commit comments

Comments
 (0)