<@U053FGT8MHQ> Would you mind if I do a few direc...
# wiremock-python
o
@mike waites Would you mind if I do a few direct pushes to master? Fixing PIP deps used by ReadTheDocs
Copy code
INFO: pip is looking at multiple versions of detox to determine which version is compatible with other requirements. This could take a while.
ERROR: Cannot install -r requirements.pip (line 3) and tox==3.14.5 because these package versions have conflicting dependencies.

The conflict is caused by:
    The user requested tox==3.14.5
    detox 0.19 depends on tox<3.7 and >=3.5

To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict

ERROR: ResolutionImpossible: for help visit <https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts>
Ah, https://pypi.org/project/detox/
detox
was a plugin for
tox
to enable parallel environment execution.
tox
3.7 added a native possibility to do this (
tox -p|--parallel
) and effectively supercedes detox.
m
i think we can drop tox. Im using strategies in github actions to test multiple version of python now
o
I suspect the entire
<https://github.com/wiremock/python-wiremock/blob/master/requirements.pip|requirements.pip>
is dated and YAGNI
m
Hmmm pip it not used by the rest of the build process We can export poetry to a pip compatible file but better if we can pull requests from the pyproject.toml file directly. Do they have them at option ?
o