Allow latest Pygments to be installed

Otherwise, installation conflicts can result when plugins/themes require
more recent Pygments versions.
This commit is contained in:
Nam Nguyen 2021-01-06 12:19:46 -08:00 committed by Justin Mayer
commit 34fc7f2a84
2 changed files with 3 additions and 2 deletions

View file

@ -35,7 +35,7 @@ blinker = "^1.4"
docutils = "^0.16" docutils = "^0.16"
feedgenerator = "^1.9" feedgenerator = "^1.9"
jinja2 = "~2.11" jinja2 = "~2.11"
pygments = "~2.6.1" pygments = "^2.6"
python-dateutil = "^2.8" python-dateutil = "^2.8"
pytz = "^2020.1" pytz = "^2020.1"
unidecode = "^1.1" unidecode = "^1.1"
@ -50,6 +50,7 @@ sphinx = "^3.0"
sphinx_rtd_theme = "^0.5" sphinx_rtd_theme = "^0.5"
livereload = "^2.6" livereload = "^2.6"
psutil = {version = "^5.7", optional = true} psutil = {version = "^5.7", optional = true}
pygments = "~2.7.4"
pytest = "^6.0" pytest = "^6.0"
pytest-cov = "^2.8" pytest-cov = "^2.8"
pytest-pythonpath = "^0.7.3" pytest-pythonpath = "^0.7.3"

View file

@ -1,5 +1,5 @@
# Tests # Tests
Pygments==2.6.1 Pygments==2.7.4
pytest pytest
pytest-cov pytest-cov
pytest-xdist[psutil] pytest-xdist[psutil]