Skip to content

Commit

Permalink
Upgrade PyYAML to 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Jan 7, 2020
1 parent 9281d12 commit 5d83f9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/pyyaml
Submodule pyyaml updated 45 files
+6 −6 .appveyor.yml
+6 −4 .travis.yml
+39 −2 CHANGES
+4 −0 README
+23 −8 announcement.msg
+0 −0 emitting-unacceptable-unicode-character-bug.code
+0 −0 emitting-unacceptable-unicode-character-bug.data
+0 −0 emitting-unacceptable-unicode-character-bug.skip-ext
+1 −1 examples/yaml-highlight/yaml_hl.py
+4 −4 ext/_yaml.pyx
+36 −11 lib/yaml/__init__.py
+38 −14 lib/yaml/constructor.py
+1 −1 lib/yaml/emitter.py
+1 −1 lib/yaml/loader.py
+1 −1 lib/yaml/reader.py
+2 −1 lib/yaml/representer.py
+4 −4 lib/yaml/scanner.py
+36 −11 lib3/yaml/__init__.py
+14 −13 lib3/yaml/constructor.py
+1 −1 lib3/yaml/loader.py
+1 −1 lib3/yaml/representer.py
+4 −4 lib3/yaml/scanner.py
+26 −23 packaging/build/appveyor.ps1
+3 −4 setup.py
+2 −0 tests/data/construct-python-object.code
+2 −0 tests/data/construct-python-object.data
+0 −0 tests/data/emoticons.unicode
+0 −0 tests/data/emoticons2.unicode
+4 −0 tests/data/multi-constructor.code
+3 −0 tests/data/multi-constructor.multi
+6 −6 tests/data/timestamp-bugs.code
+12 −6 tests/data/timestamp-bugs.data
+1 −1 tests/lib/test_build.py
+1 −1 tests/lib/test_build_ext.py
+23 −1 tests/lib/test_constructor.py
+63 −0 tests/lib/test_multi_constructor.py
+1 −0 tests/lib/test_yaml.py
+17 −1 tests/lib/test_yaml_ext.py
+1 −1 tests/lib3/test_build.py
+1 −1 tests/lib3/test_build_ext.py
+23 −1 tests/lib3/test_constructor.py
+63 −0 tests/lib3/test_multi_constructor.py
+1 −0 tests/lib3/test_yaml.py
+17 −1 tests/lib3/test_yaml_ext.py
+2 −1 tox.ini
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def find_version(*file_paths):
],

install_requires=[
'PyYAML>=5.1.2,<6',
'PyYAML>=5.3,<6',
],

# To provide executable scripts, use entry points in preference to the
Expand Down

0 comments on commit 5d83f9e

Please sign in to comment.