Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: revert the ruyaml dependency #138

Merged
merged 1 commit into from
Nov 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,14 @@
""",
install_requires=[
"click",
# ruyaml pinned to 0.90.0.2 to include fix of anchors and aliases.
# This version is not available in pypi.
# See https://github.com/lyz-code/yamlfix/issues/120.
"ruyaml @ git+git://github.com/pycontribs/[email protected]#egg=ruyaml",
"ruyaml",
# Until https://github.com/pycontribs/ruyaml/issues/58 is resolved, the issue
# https://github.com/lyz-code/yamlfix/issues/120 will remain because we can't
# hardcode dependencies from github in the setup.py because Pypi doesn't allow
# them.
#
# If you need that feature, please change the "ruyaml" line above with
# "ruyaml @ git+git://github.com/pycontribs/[email protected]#egg=ruyaml", # noqa E800
# and run `make install`.
],
)