Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Remove ceiling from dependencies
Browse files Browse the repository at this point in the history
This fixes conflict bugs when installing package. Ceiling should
happen only when there is a known/proven incompatibility.
  • Loading branch information
ssbarnea committed Dec 15, 2021
1 parent 82866af commit a9bcd59
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@ setup_requires =

# These are required in actual runtime:
install_requires =
molecule >= 3.0a0
pyyaml >= 5.1, < 6
molecule >= 3.0
pyyaml >= 5.1

[options.extras_require]
test =
flake8>=3.6.0, < 4
flake8>=3.6.0

mock>=3.0.5, < 4
pytest>=4.6.3, < 5
pytest-cov>=2.7.1, < 3
pytest-helpers-namespace>=2019.1.8, < 2020
pytest-mock>=1.10.4, < 2
pytest-verbose-parametrize>=1.7.0, < 2
pytest-xdist>=1.29.0, < 2
mock>=3.0.5
pytest>=4.6.3
pytest-cov>=2.7.1
pytest-helpers-namespace>=2019.1.8
pytest-mock>=1.10.4
pytest-verbose-parametrize>=1.7.0
pytest-xdist>=1.29.0
pytest-dependency

[options.entry_points]
Expand Down

0 comments on commit a9bcd59

Please sign in to comment.