aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2019-04-02 02:10:09 +0000
committerMike Crute <mike@crute.us>2019-04-02 03:24:37 +0000
commita8a144bc7faa148eb4295fcbab0d05f08371ea87 (patch)
treefdfaad8a55e159606695aae00630e810925a84a7
parentb9fe16fc341d516b52d282f67be6b2ae791aa84f (diff)
downloadpydora-a8a144bc7faa148eb4295fcbab0d05f08371ea87.tar.bz2
pydora-a8a144bc7faa148eb4295fcbab0d05f08371ea87.tar.xz
pydora-a8a144bc7faa148eb4295fcbab0d05f08371ea87.zip
Update versions
-rw-r--r--.travis.yml5
-rwxr-xr-xsetup.py7
2 files changed, 3 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index 13fd999..dd54537 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,11 @@
1language: python 1language: python
2python: 2python:
3 - "2.7"
4 - "3.4"
5 - "3.5" 3 - "3.5"
6 - "3.6" 4 - "3.6"
5 - "3.7"
7before_script: 6before_script:
8 # Travis versions of these are really outdated 7 # Travis versions of these are really outdated
9 - pip install -U mock nose pytest 8 - pip install -U mock nose pytest
10 # Only used in production for python3.4- but required for tests
11 - pip install cryptography
12 # Enable sending Coverage data 9 # Enable sending Coverage data
13 - pip install codecov 10 - pip install codecov
14script: 11script:
diff --git a/setup.py b/setup.py
index 879eb7f..62aec94 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,5 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2 2
3import sys
4import itertools 3import itertools
5from setuptools.command.test import test 4from setuptools.command.test import test
6from setuptools import setup, find_packages 5from setuptools import setup, find_packages
@@ -63,11 +62,11 @@ else:
63 62
64setup( 63setup(
65 name="pydora", 64 name="pydora",
66 version="1.13.0", 65 version="2.0.0",
67 description="Python wrapper for Pandora API", 66 description="Python wrapper for Pandora API",
68 long_description=open("README.rst", "r").read(), 67 long_description=open("README.rst", "r").read(),
69 author="Mike Crute", 68 author="Mike Crute",
70 author_email="mcrute@gmail.com", 69 author_email="mike@crute.us",
71 url="https://github.com/mcrute/pydora", 70 url="https://github.com/mcrute/pydora",
72 test_suite="tests.discover_suite", 71 test_suite="tests.discover_suite",
73 packages=find_packages(exclude=["tests", "tests.*"]), 72 packages=find_packages(exclude=["tests", "tests.*"]),
@@ -87,8 +86,6 @@ setup(
87 "Intended Audience :: End Users/Desktop", 86 "Intended Audience :: End Users/Desktop",
88 "License :: OSI Approved :: MIT License", 87 "License :: OSI Approved :: MIT License",
89 "Operating System :: OS Independent", 88 "Operating System :: OS Independent",
90 "Programming Language :: Python :: 2.7",
91 "Programming Language :: Python :: 3.4",
92 "Programming Language :: Python :: 3.5", 89 "Programming Language :: Python :: 3.5",
93 "Programming Language :: Python :: 3.6", 90 "Programming Language :: Python :: 3.6",
94 "Programming Language :: Python :: 3.7", 91 "Programming Language :: Python :: 3.7",