From 1e9f753a101a0af9e4507115e2ef1ba5f82a098c Mon Sep 17 00:00:00 2001 From: Dom Sekotill Date: Wed, 23 Mar 2022 00:50:27 +0000 Subject: [PATCH 1/2] Work around https://github.com/pypa/flit/issues/476 --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0af9617..bc8068a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,10 @@ authors = [ license = {file = "LICENCE.txt"} readme = "README.md" dynamic = ["version", "description"] -requires-python = "~=3.9" + +# https://github.com/pypa/flit/issues/476 +requires-python = ">=3.9,<4" + dependencies = [ "jinja2", ] -- GitLab From e6adda2796da433a77f62936a827ad4de3e8cfe3 Mon Sep 17 00:00:00 2001 From: Dom Sekotill Date: Wed, 23 Mar 2022 00:51:44 +0000 Subject: [PATCH 2/2] Add wheels to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 779588e..b98e6c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ # Python object cache *.py[co] +# Packages +*.whl + # Test results /results/ -- GitLab