From: Cooper Lees Date: Fri, 8 May 2020 12:49:51 +0000 (-0700) Subject: Move to 'py3' tagged wheels (#1388) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/07c046b7cd0e4ced8f1713c8b8fa9fb0190cf472?pf=etc Move to 'py3' tagged wheels (#1388) - This makes black wheels to be tagged as py3 default - `python_requires=">=3.6"` ensures we are >= 3.6 Test: ``` python3 -m venv /tmp/build_black /tmp/build_black/bin/pip install --upgrade pip setuptools wheel /tmp/build_black/bin/python setup.py bdist_wheel ... black-19.10b1.dev53+g81bf9bb.d20200508-py3-none-any.whl ``` Addresses #1385 --- diff --git a/setup.cfg b/setup.cfg index d10a2eb..55c66ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,2 @@ -[bdist_wheel] -python-tag = py36 - [options] setup_requires = setuptools_scm