Skip to content

Project files tune-up #320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jan 11, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update setup.py classifiers and tests
- Remove py32 classifier
- Stop testing on unsupported python versions
- Add python33 testing
- Changed check_output to _check_output
  • Loading branch information
vmuriart committed Jan 9, 2017
commit dd0650170168e665e2d8c98457ea2ce64104baa2
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: required
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from distutils.spawn import find_executable
from distutils import log
from platform import architecture
from subprocess import Popen, CalledProcessError, PIPE, check_call, check_output
from subprocess import Popen, CalledProcessError, PIPE, check_call
from glob import glob
import fnmatch
import sys
Expand Down Expand Up @@ -155,8 +155,8 @@ def build_extension(self, ext):
enable_shared = get_config_var("Py_ENABLE_SHARED")
if enable_shared:
# Double-check if libpython is linked dynamically with python
lddout = check_output(["ldd", sys.executable])
if b'libpython' not in lddout:
lddout = _check_output(["ldd", sys.executable])
if 'libpython' not in lddout:
enable_shared = False

if not enable_shared:
Expand Down Expand Up @@ -339,11 +339,10 @@ def _get_interop_filename():
author="Python for .Net developers",
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.6',
'Programming Language :: C#',
'License :: OSI Approved :: Zope Public License',
'Development Status :: 5 - Production/Stable',
Expand Down