Skip to content

Commit f1ff319

Browse files
committed
myst-parser: bump docutils version requirements
1 parent b1c3a38 commit f1ff319

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Sphinx==4.0.2
22
sphinx-rtd-theme==0.5.2
33
myst-parser==0.15.1
4-
docutils<0.17
4+
docutils<0.19

flake.nix

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,14 @@
170170
pkgs = import nixpkgs {
171171
inherit system;
172172
overlays = [ self.overlay ];
173-
config = { allowBroken = true; };
173+
config = {
174+
allowBroken = true;
175+
packageOverrides = pkgs': {
176+
python39 = pkgs'.python39.override {
177+
packageOverrides = self: super: { docutils = super.python3Packages.callPackage ./docutils.nix {}; };
178+
};
179+
};
180+
};
174181
};
175182

176183
# Pre-commit hooks to run stylish-haskell

0 commit comments

Comments
 (0)