diff --git a/.travis.yml b/.travis.yml index 4b2d3c4..b7dcb95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: python -sudo: false python: - - "2.7" - "3.5" + - "3.6" install: - pip install -r test_reqs.txt - pip install coveralls diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..9212450 --- /dev/null +++ b/CHANGES @@ -0,0 +1,3 @@ +2.0.0 +================== +* Removed python 2 support. \ No newline at end of file diff --git a/setup.py b/setup.py index e7b5b5b..6ee9da4 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ name="django-infranil", version="1.1.0", author="Anders Pearson", - author_email="ccnmtl-dev@columbia.edu", + author_email="ctl-dev@columbia.edu", url="https://github.com/ccnmtl/django-infranil", description="almost flat pages", long_description="Almost Flat Pages", @@ -16,6 +16,5 @@ platforms=["any"], zip_safe=False, packages=['infranil'], - test_suite='nose.collector', include_package_data=True, )