Bump version

This commit is contained in:
MariuszC
2020-01-18 21:41:10 +01:00
parent c413871026
commit 17ffa6fad6
7 changed files with 21 additions and 13 deletions

1
.gitignore vendored
View File

@@ -7,3 +7,4 @@
MANIFEST
build/
dist/
venv/

10
.idea/workspace.xml generated
View File

@@ -2,13 +2,13 @@
<project version="4">
<component name="ChangeListManager">
<list default="true" id="a827305c-f450-4dd8-9234-28c4c187e3c8" name="Default" comment="">
<change afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/mopidy-radionet.iml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/mopidy-radionet.iml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.travis.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.travis.yml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/README.rst" beforeDir="false" afterPath="$PROJECT_DIR$/README.rst" afterDir="false" />
<change beforePath="$PROJECT_DIR$/mopidy_radionet/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/mopidy_radionet/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/mopidy_radionet/radionet.py" beforeDir="false" afterPath="$PROJECT_DIR$/mopidy_radionet/radionet.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/setup.py" beforeDir="false" afterPath="$PROJECT_DIR$/setup.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/tox.ini" beforeDir="false" afterPath="$PROJECT_DIR$/tox.ini" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -105,9 +105,9 @@
<method v="2" />
</configuration>
<list>
<item itemvalue="Python.adhoctest" />
<item itemvalue="Python.test_extension" />
<item itemvalue="Python.test_radionet" />
<item itemvalue="Python.adhoctest" />
</list>
<recent_temporary>
<list>

View File

@@ -3,7 +3,10 @@ sudo: false
language: python
python:
- "2.7_with_system_site_packages"
- "3.7"
virtualenv:
system_site_packages: true
addons:
apt:
@@ -13,7 +16,7 @@ addons:
- mopidy
env:
- TOX_ENV=py27
- TOX_ENV=py37
- TOX_ENV=flake8
install:
@@ -23,6 +26,6 @@ script:
- "tox -e $TOX_ENV"
after_success:
- "if [ $TOX_ENV == 'py27' ]; then pip install coveralls; coveralls; fi"
- "if [ $TOX_ENV == 'py37' ]; then pip install coveralls; coveralls; fi"

View File

@@ -51,6 +51,10 @@ Project resources
Changelog
=========
v0.2.0 Python 3
----------------------------------------
- Migration to Python 3.7
v0.1.0 (UNRELEASED)
----------------------------------------

View File

@@ -6,7 +6,7 @@ import os
from mopidy import config, ext
__version__ = '0.1.4'
__version__ = '0.2.0'
logger = logging.getLogger(__name__)

View File

@@ -14,10 +14,10 @@ def get_version(filename):
setup(
name='Mopidy-RadioNet',
version=get_version('mopidy_radionet/__init__.py'),
url='https://github.com/blackberrymamba/mopidy-radionet',
url='https://github.com/plintx/mopidy-radionet',
license='Apache License, Version 2.0',
author='blackberrymamba',
author_email='mariusz@typedef.pl',
author='plintx',
author_email='mariusz@intx.pl',
description='Mopidy extension for radio.net',
long_description=open('README.rst').read(),
packages=find_packages(exclude=['tests', 'tests.*']),

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py27, flake8
envlist = py37, flake8
[testenv]
sitepackages = true