summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/publish.yml2
-rw-r--r--docs/news.rst5
-rw-r--r--setup.cfg2
-rw-r--r--setup.py3
4 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 4345c91..3621590 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -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"
diff --git a/docs/news.rst b/docs/news.rst
index 3d7b4b1..c1e05cc 100644
--- a/docs/news.rst
+++ b/docs/news.rst
@@ -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
diff --git a/setup.cfg b/setup.cfg
index 56e7c71..1d71854 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -18,7 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
author = Daniel Holth
author_email = dholth@fastmail.fm
-maintainer = Alex Grönholm
+maintainer = Alex Gronholm
maintainer_email = alex.gronholm@nextday.fi
url = https://github.com/pypa/wheel
project_urls =
diff --git a/setup.py b/setup.py
index 6068493..628efe3 100644
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,4 @@
+# coding: utf-8
from setuptools import setup
-setup()
+setup(maintainer=u'Alex Grönholm')