Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Fix error in setup.py on Python 3 when LANG=C. #36

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import os
import sys
import io

try:
from setuptools import setup
Expand All @@ -23,7 +24,7 @@
name='django-postgrespool',
version='0.3.0',
description='Postgres Connection Pooling for Django.',
long_description=open('README.rst').read(),
long_description=io.open('README.rst', encoding='utf-8').read(),
author='Kenneth Reitz',
author_email='[email protected]',
url='https://github.com/kennethreitz/django-postgrespool',
Expand Down