Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure package name isn't unicode in Python2 distutils
Problem encountered on Ubuntu 14.04 Fixes pypa#190 If people need to fix this without this patch, they have to wrap their package names in `str()` like so: ```python #!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals setup( # .... package_dir=[ str('package_name'), ] ) ```
- Loading branch information