From 06ec444630f68a754496f4f766ed9dbd6252d3d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Tue, 28 Jan 2020 16:59:11 +0200 Subject: [PATCH] Fixed installing from sdist in some non-UTF8 environments Fixes #331. --- .github/workflows/publish.yml | 2 +- docs/news.rst | 5 +++++ setup.cfg | 2 +- setup.py | 3 ++- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4345c91b..36215906 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 3d7b4b1b..c1e05cc8 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 56e7c718..1d718540 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 60684932..628efe3b 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')