Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify ansible-core dep w/ compatible operator (#346)
* Simplify ansible-core dep w/ compatible operator The `~=` opeator is similar to `^` in some ecosystems (NodeJS/Poetry/Rust). It allows to achieve the request of a compatible release by only allowing the last version segment to be variable. For example, `~= 2.13.2` is equivalent to `>= 2.13.2, == 2.13.*`. Ref: https://www.python.org/dev/peps/pep-0440/#compatible-release * Keep referencing `collection_deps` on the line as the core dep Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
- Loading branch information