Skip to content

Commit

Permalink
need PyYAML>=5.1 for yaml.FullLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
edsu committed Nov 19, 2019
1 parent 2b6bdc5 commit a2edec4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion diffengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# maybe this module should be broken up into multiple files, or maybe not ...

UA = "diffengine/0.2.0 (+https://github.com/docnow/diffengine)"
UA = "diffengine/0.2.2 (+https://github.com/docnow/diffengine)"

import os
import re
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jinja2
peewee
pillow
pytest
pyyaml
pyyaml>=5.1
tweepy
requests
selenium
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version = "0.2.2"

import sys
if sys.version_info < (3,0):
sys.exit('Sorry, diffengine runs on Python 3')
Expand All @@ -14,7 +16,6 @@
reqs.remove(htmldiff)
reqs.append("htmldiff==0.2")
deps = [htmldiff]
version = "0.2.0"

if __name__ == "__main__":
setup(
Expand Down

0 comments on commit a2edec4

Please sign in to comment.