tarpas / pytest-testmon

Selects tests affected by changed files. Executes the right tests first. Continuous test runner when used with pytest-watch.
https://testmon.org
MIT License
823 stars 55 forks source link

pyproject.toml contains an unneeded preprocess dependency. #172

Closed kbaikov closed 2 years ago

kbaikov commented 2 years ago

The archive that you have in pypi contains a pyproject.toml file with a preprocess dependency. However your setup.cfg does not contain preprocess.

This confuses some older dependency resolvers (e.g. pipenv)

Please either remove preprocess from pyproject.toml or add it to setup.cfg.

kbaikov commented 2 years ago

@tarpas Could you please take a look at this issue? the simple python setup.py sdist created archive does not generate pyproject.toml for me. Are you using some other tool to generate and upload to pypi the archive?

Could you please add pyproject.toml to the root of your project then?

Thank you.

tarpas commented 2 years ago

Sorry, about that and thanks a lot for diagnosis. pyproject.toml shouldn't be there at all so I think the solution will be just to remove it from the archive. It's probably not happening today or tomorrow, but I think until the end of the week we'll do it.

kbaikov commented 2 years ago

Any progress on this? @tarpas

tarpas commented 2 years ago

Sorry for the delay. Should be fixed now with version 1.2.2

kbaikov commented 2 years ago

Thank you!