Skip to content

Commit

Permalink
Fix open bug.
Browse files Browse the repository at this point in the history
Python is annoying.
  • Loading branch information
alecthomas committed Aug 5, 2018
1 parent c32bf6a commit e72fd3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
@@ -1,13 +1,14 @@
from setuptools import setup

import sys
import io
import os
import atexit
sys.path.insert(0, '.')
version = __import__('voluptuous').__version__


with open('README.md', encoding='utf-8') as f:
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
description = long_description.splitlines()[0].strip()

Expand Down
2 changes: 1 addition & 1 deletion voluptuous/__init__.py
Expand Up @@ -5,5 +5,5 @@
from voluptuous.util import *
from voluptuous.error import *

__version__ = '0.11.4'
__version__ = '0.11.5'
__author__ = 'alecthomas'

0 comments on commit e72fd3b

Please sign in to comment.