diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-03-19 14:11:11 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-03-19 14:13:53 -0700 |
commit | 029de661f4fbd7320bd06dc658ec32b4119fb313 (patch) | |
tree | 52e70c2e222b4d19a638c9cb59481276c9067c80 | |
parent | 005f0fbcd558636f0d5db1203427a4d7b341f36e (diff) | |
download | pandoc-029de661f4fbd7320bd06dc658ec32b4119fb313.tar.gz |
Narrow version bounds for skylighting, citeproc, and texmath.
This reduces the chance that tests will fail due to behavior
changes in one of these dependencies. (See e.g. #7163)
-rw-r--r-- | pandoc.cabal | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index bb12b8cca..6338a4fdc 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -445,7 +445,7 @@ library blaze-markup >= 0.8 && < 0.9, bytestring >= 0.9 && < 0.12, case-insensitive >= 1.2 && < 1.3, - citeproc >= 0.3.0.9 && < 0.4, + citeproc >= 0.3.0.9 && < 0.3.1, commonmark >= 0.1.1.3 && < 0.2, commonmark-extensions >= 0.2.0.4 && < 0.3, commonmark-pandoc >= 0.2 && < 0.3, @@ -479,13 +479,13 @@ library random >= 1 && < 1.3, safe >= 0.3.18 && < 0.4, scientific >= 0.3 && < 0.4, - skylighting >= 0.10.5 && < 0.11, - skylighting-core >= 0.10.5 && < 0.11, + skylighting >= 0.10.5 && < 0.10.6, + skylighting-core >= 0.10.5 && < 0.10.6, split >= 0.2 && < 0.3, syb >= 0.1 && < 0.8, tagsoup >= 0.14.6 && < 0.15, temporary >= 1.1 && < 1.4, - texmath >= 0.12.2 && < 0.13, + texmath >= 0.12.2 && < 0.12.3, text >= 1.1.1.0 && < 1.3, text-conversions >= 0.3 && < 0.4, time >= 1.5 && < 1.10, |