diff options
| -rw-r--r-- | .github/workflows/publish.yml | 2 | ||||
| -rw-r--r-- | docs/news.rst | 5 | ||||
| -rw-r--r-- | setup.cfg | 2 | ||||
| -rw-r--r-- | setup.py | 3 |
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 @@ -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 = @@ -1,3 +1,4 @@ +# coding: utf-8 from setuptools import setup -setup() +setup(maintainer=u'Alex Grönholm') |
