Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed May 11, 2017
1 parent 3b43147 commit 33c43b9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -6,5 +6,6 @@ python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: pip install tox-travis flake8
script: tox
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ arbitrary swappable models in your own reusable apps.

[![Travis Build Status](https://img.shields.io/travis/wq/django-swappable-models.svg)](https://travis-ci.org/wq/django-swappable-models)
[![Python Support](https://img.shields.io/pypi/pyversions/swapper.svg)](https://pypi.python.org/pypi/swapper)
[![Django Support](https://img.shields.io/badge/Django-1.6%2C%201.7%2C%201.8%2C%201.9%2C%201.10-blue.svg)](https://pypi.python.org/pypi/swapper)
[![Django Support](https://img.shields.io/badge/Django-1.6%2C%201.7%2C%201.8%2C%201.9%2C%201.10%2C%201.11-blue.svg)](https://pypi.python.org/pypi/swapper)

## Motivation

Expand Down
11 changes: 9 additions & 2 deletions setup.py
Expand Up @@ -33,7 +33,7 @@ def parse_markdown_readme():

setup(
name='swapper',
version='1.0.0',
version='1.1.0-dev',
author='S. Andrew Sheppard',
author_email='andrew@wq.io',
url='https://github.com/wq/django-swappable-models',
Expand All @@ -42,7 +42,6 @@ def parse_markdown_readme():
description=LONG_DESCRIPTION.strip(),
long_description=parse_markdown_readme(),
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
Expand All @@ -55,6 +54,14 @@ def parse_markdown_readme():
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
],
tests_require=['django>=1.6'],
test_suite='tests',
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Expand Up @@ -6,14 +6,16 @@ envlist =
py{27,33,34,35}-django18-{noswap,swap}
py{27,34,35}-django19-{noswap,swap}
py{27,34,35}-django110-{noswap,swap}
py{27,34,35,36}-django111-{noswap,swap}
lint

[tox:travis]
2.6 = py26
2.7 = py27
3.3 = py33
3.4 = py34
3.5 = py35, lint
3.5 = py35
3.6 = py36, lint

[testenv]
commands =
Expand All @@ -25,6 +27,7 @@ deps =
django18: django~=1.8.0
django19: django~=1.9.0
django110: django~=1.10.0
django111: django~=1.11.0
unittest2: unittest2
setenv =
noswap: DJANGO_SETTINGS_MODULE=tests.settings
Expand Down

0 comments on commit 33c43b9

Please sign in to comment.