Skip to content

Commit

Permalink
Fixed installing from sdist in some non-UTF8 environments
Browse files Browse the repository at this point in the history
Fixes #331.
  • Loading branch information
agronholm committed Jan 28, 2020
1 parent 43078c4 commit 06ec444
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.x
python-version: 3.7
- name: Install dependencies
run: |
pip install "setuptools >= 40.9"
Expand Down
5 changes: 5 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release Notes
=============

**UNRELEASED**

- Fixed installation of ``wheel`` from sdist on environments without Unicode
file name support

**0.34.1 (2020-01-27)**

- Fixed installation of ``wheel`` from sdist which was broken due to a chicken
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
author = Daniel Holth
author_email = [email protected]
maintainer = Alex Grönholm
maintainer = Alex Gronholm
maintainer_email = [email protected]
url = https://github.com/pypa/wheel
project_urls =
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# coding: utf-8
from setuptools import setup

setup()
setup(maintainer=u'Alex Grönholm')

0 comments on commit 06ec444

Please sign in to comment.