[7.x] Actually dockerize repo, update build-dists for release manager

This commit is contained in:
Seth Michael Larson
2020-11-04 13:58:42 -06:00
parent acc37ea1e4
commit 708e282eaf
13 changed files with 101 additions and 21 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ def blacken(session):
session.install("black")
session.run("black", "--target-version=py27", *SOURCE_FILES)
session.run("python", "utils/license_headers.py", "fix", *SOURCE_FILES)
session.run("python", "utils/license-headers.py", "fix", *SOURCE_FILES)
lint(session)
@@ -51,7 +51,7 @@ def lint(session):
session.run("black", "--target-version=py27", "--check", *SOURCE_FILES)
session.run("flake8", *SOURCE_FILES)
session.run("python", "utils/license_headers.py", "check", *SOURCE_FILES)
session.run("python", "utils/license-headers.py", "check", *SOURCE_FILES)
# Workaround to make '-r' to still work despite uninstalling aiohttp below.
session.run("python", "-m", "pip", "install", "aiohttp")