fix: produce working SDists

This commit is contained in:
Henry Schreiner
2021-10-26 12:07:17 -04:00
parent 4515cd2203
commit 0bfbd5b309
4 changed files with 33 additions and 1 deletions
+11 -1
View File
@@ -4,7 +4,7 @@ from pathlib import Path
import nox
nox.options.sessions = ["lint", "tests"]
nox.options.sessions = ["lint", "check_manifest", "tests"]
PYTHON_ALL_VERSIONS = ["3.6", "3.7", "3.8", "3.9"]
@@ -34,6 +34,16 @@ def lint(session: nox.Session) -> None:
session.run("pre-commit", "run", "--all-files", *session.posargs)
@nox.session
def check_manifest(session: nox.Session) -> None:
"""
Ensure all needed files are included in the manifest.
"""
session.install("check-manifest")
session.run("check-manifest", *session.posargs)
@nox.session(python=PYTHON_ALL_VERSIONS)
def update_constraints(session: nox.Session) -> None:
"""