mirror of
https://github.com/chatmail/relay.git
synced 2026-05-18 00:18:58 +00:00
Do not build wheels and use a single dist/ directory (#11)
Only sdists are used for deployment.
This commit is contained in:
@@ -14,7 +14,7 @@ def _install_doveauth() -> None:
|
||||
"""Setup chatctl."""
|
||||
doveauth_filename = "doveauth-0.1.tar.gz"
|
||||
doveauth_path = importlib.resources.files(__package__).joinpath(
|
||||
f"../../../doveauth/dist/{doveauth_filename}"
|
||||
f"../../../dist/{doveauth_filename}"
|
||||
)
|
||||
remote_path = f"/tmp/{doveauth_filename}"
|
||||
if Path(str(doveauth_path)).exists():
|
||||
@@ -35,7 +35,7 @@ def _install_filtermail() -> None:
|
||||
"""Setup filtermail."""
|
||||
filtermail_filename = "filtermail-0.1.tar.gz"
|
||||
filtermail_path = importlib.resources.files(__package__).joinpath(
|
||||
f"../../../filtermail/dist/{filtermail_filename}"
|
||||
f"../../../dist/{filtermail_filename}"
|
||||
)
|
||||
remote_path = f"/tmp/{filtermail_filename}"
|
||||
if Path(str(filtermail_path)).exists():
|
||||
|
||||
Reference in New Issue
Block a user