Skip to content
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

MAINT: add tests for 3.6, remove 2.6. #8

Merged
merged 1 commit into from Feb 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -2,8 +2,8 @@ language: python

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

install:
- python setup.py install
Expand Down
11 changes: 6 additions & 5 deletions setup.py
@@ -1,11 +1,13 @@
import os.path as op
import os.path

from setuptools import setup


VERSION = "0.2.0.dev1"


if __name__ == "__main__":
with open(op.join("machotools", "__version.py"), "wt") as fp:
with open(os.path.join("machotools", "__version.py"), "wt") as fp:
fp.write("__version__ = '{0}'".format(VERSION))

setup(name="machotools",
Expand All @@ -16,8 +18,7 @@
packages=["machotools", "machotools.tests"],
install_requires=["macholib"],
classifiers=[
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
])
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py34,py35
envlist = py27,py35,py36

[testenv]
deps=nose
Expand Down