Skip to content

Commit 5e94b0c

Browse files
committed
Avoid bdist_wheel.universal deprecation warning. Refs #1675
See: pypa/setuptools#4617 pypa/setuptools#4939
1 parent 5bd1af9 commit 5e94b0c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setup.cfg

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
[easy_install]
22
zip_ok = false
33

4+
;Marking a wheel as universal with "universal = 1" was deprecated
5+
;in Setuptools 75.1.0. Setting "python_tag = py2.py3" should do
6+
;the equivalent on Setuptools 30.3.0 or later.
7+
;
8+
;https://github.com/pypa/setuptools/pull/4617
9+
;https://github.com/pypa/setuptools/pull/4939
10+
;
411
[bdist_wheel]
5-
universal = 1
12+
python_tag = py2.py3

0 commit comments

Comments
 (0)