We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e84077e commit 1285f92Copy full SHA for 1285f92
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- Explicitly use `utf-8` encoding in `setup.py`, which could previously lead to issues when installing on certain systems.
13
14
## [v1.3.0.b0] - 2019-06-23
15
16
**NOTE**: this release contains migrations. In your Django project, run them using:
setup.py
@@ -1,8 +1,10 @@
1
+#!/usr/bin/env python
2
+# encoding: utf-8
3
"""Package setup."""
4
5
import setuptools
6
-with open("README.md", "r") as readme:
+with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
0 commit comments