Skip to content

Commit 06ec444

Browse files
committed
Fixed installing from sdist in some non-UTF8 environments
Fixes #331.
1 parent 43078c4 commit 06ec444

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Python
1212
uses: actions/setup-python@v1
1313
with:
14-
python-version: 3.x
14+
python-version: 3.7
1515
- name: Install dependencies
1616
run: |
1717
pip install "setuptools >= 40.9"

docs/news.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release Notes
22
=============
33

4+
**UNRELEASED**
5+
6+
- Fixed installation of ``wheel`` from sdist on environments without Unicode
7+
file name support
8+
49
**0.34.1 (2020-01-27)**
510

611
- Fixed installation of ``wheel`` from sdist which was broken due to a chicken

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers =
1818
Programming Language :: Python :: 3.8
1919
author = Daniel Holth
2020
author_email = [email protected]
21-
maintainer = Alex Grönholm
21+
maintainer = Alex Gronholm
2222
maintainer_email = [email protected]
2323
url = https://github.com/pypa/wheel
2424
project_urls =

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# coding: utf-8
12
from setuptools import setup
23

3-
setup()
4+
setup(maintainer=u'Alex Grönholm')

0 commit comments

Comments
 (0)