Skip to content

Commit 360192a

Browse files
sumanthvraoneiljp
authored andcommitted
requirements: Explicitly install pygments 2.3.1 for pudb on py 3.4.
The latest pygments release depends on py3.5+, so when pudb installs the latest version, this breaks our dev installs on py3.4. This commit is a workaround for this issue, to enable pipenv dev installs, which are currently also used for testing in CI.
1 parent 1948085 commit 360192a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ pytest = "==3.4.2"
1818
pytest-pep8 = "==1.0.6"
1919
pytest-mock = "==1.7.1"
2020
pytest-cov = "==2.5.1"
21+
pygments = "==2.3.1" # For pudb, python 3.4
2122
pudb = "==2017.1.4"
2223
tornado = "~=5.1" # For snakeviz, python 3.4+
2324
snakeviz = "==0.4.2"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pytest==3.4.2
55
pytest-cov==2.5.1
66
pytest-pep8==1.0.6
77
pytest-mock==1.7.1
8+
pygments==2.3.1
89
pudb==2017.1.4
910
tornado~=5.1
1011
snakeviz==0.4.2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def long_description():
3737

3838
dev_helper_deps = [
3939
'mypy==0.641',
40+
'pygments==2.3.1',
4041
'pudb==2017.1.4',
4142
'tornado~=5.1',
4243
'snakeviz==0.4.2',

0 commit comments

Comments
 (0)