pyproject-transition #922
@ -56,3 +56,6 @@ profile = "black"
|
||||
known_first_party = "borgmatic"
|
||||
line_length = 100
|
||||
skip = ".tox"
|
||||
|
||||
[tool.codespell]
|
||||
skip = ".git,.tox,build"
|
||||
witten marked this conversation as resolved
|
||||
|
Loading…
x
Reference in New Issue
Block a user
This
pyproject.toml
looks good to me. But it seems to result in an unimportableborgmatic
module, I'm guessing becausesetup.py
is gone and something is still relying on it to considerborgmatic
a module.For instance, when I run tests, a particular test that tries to run the
borgmatic
executable fails:And I can reproduce this by manually running borgmatic in the virtualenv:
So I'm not sure what's missing here.
Fixed with
601e393ec7
(pyproject/build failed to ship submodules).