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

Sort dependencies #2711

Merged
merged 1 commit into from
Nov 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,20 @@ zip_safe = False
# end-up downloading a huge amount of wheels in its attempt to find one that
# is compatible.
install_requires =
ansible-compat>=2.2.5 # GPLv3
# Special order section for helping pip:
ansible-core>=2.12.0,<2.14.0; python_version<"3.9" # GPLv3
ansible-core>=2.12.0; python_version>="3.9" # GPLv3
black>=22.1.0 # MIT
filelock # The Unlicense
ansible-compat>=2.2.5 # GPLv3
# alphabetically sorted:
black>=22.8.0 # MIT
filelock>=3.8.0 # The Unlicense
jsonschema>=4.17.0 # MIT, version needed for improved errors
packaging
packaging>=21.3 # Apache-2.0,BSD-2-Clause
pyyaml>=5.4.1 # MIT (centos 9 has 5.3.1)
rich>=12.6.0
# The next version is planned to have breaking changes
ruamel.yaml>=0.17.21,< 0.18
# NOTE: per issue #509 0.15.34 included in debian backports
wcmatch>=8.4.1 # MIT
yamllint >= 1.28.0 # GPLv3
rich>=12.0.0 # MIT
ruamel.yaml >= 0.17.21, < 0.18 # MIT, next version is planned to have breaking changes
yamllint >= 1.26.3 # GPLv3
wcmatch>=8.3.2 # MIT

[options.entry_points]
console_scripts =
Expand Down