From 97057ed9ea25c22a51a1497f83df0300a337a2dc Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 28 Sep 2021 15:14:20 +0300 Subject: [PATCH 1/2] No need to build universal wheels for Python 3-only --- setup.cfg | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2da65474e..81c4aa55d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -56,9 +56,6 @@ console_scripts = [options.package_data] jsonschema = schemas/*.json, schemas/*/*.json -[bdist_wheel] -universal = 1 - [flake8] inline-quotes = " exclude = From 3da1fcf5a488a850f189d04db35316bb6d587abe Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 28 Sep 2021 15:18:29 +0300 Subject: [PATCH 2/2] Ignore build files --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 31236db57..0c4a6b122 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,8 @@ _cache _static _templates +*.egg-info/ +build +dist + TODO