From 0cdbb9b2924130b275eeb1d69695e17f73cedbb2 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Sat, 1 Jul 2023 16:12:38 -0400 Subject: [PATCH] fix: restore setup.cfg as workaround for editable install in py36 See: https://github.com/pypa/setuptools/issues/3226 --- pyproject.toml | 3 --- setup.cfg | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 50a361b..b490d0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,9 +63,6 @@ version = { attr = "pqdict.__version__" } [tool.setuptools.package-data] pqdict = ['py.typed'] -[tool.distutils.bdist_wheel] -universal = true - [tool.isort] profile = "black" skip_gitignore = true diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3480374 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 \ No newline at end of file