From a0e8fe4e0f195c7f937275bb62fa3bcbe78fa1a9 Mon Sep 17 00:00:00 2001 From: Wes Okes Date: Fri, 15 Sep 2017 15:45:04 -0400 Subject: [PATCH 1/2] update django and python --- .travis.yml | 6 ++++-- db_mutex/version.py | 2 +- docs/release_notes.rst | 4 ++++ setup.py | 12 +++++++----- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index bb5fb57..1590d9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,13 +3,15 @@ language: python python: - '2.7' - '3.4' + - '3.5' + - '3.6' env: global: - DB=postgres matrix: - - DJANGO=">=1.7,<1.8" - - DJANGO=">=1.8,<1.9" - DJANGO=">=1.9,<1.10" + - DJANGO=">=1.10,<1.11" + - DJANGO=">=1.11,<2.0" install: - pip install -q coverage flake8 Django$DJANGO django-nose>=1.4 - python setup.py install diff --git a/db_mutex/version.py b/db_mutex/version.py index e1424ed..abeeedb 100644 --- a/db_mutex/version.py +++ b/db_mutex/version.py @@ -1 +1 @@ -__version__ = '0.3.1' +__version__ = '0.4.0' diff --git a/docs/release_notes.rst b/docs/release_notes.rst index ad444aa..7f3205e 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -1,6 +1,10 @@ Release Notes ============= +v0.4.0 +------ +* Fixed docs + v0.3.1 ------ * Fixed docs diff --git a/setup.py b/setup.py index 1eebfd0..1613e0b 100644 --- a/setup.py +++ b/setup.py @@ -32,25 +32,27 @@ def get_version(): 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Framework :: Django', - 'Framework :: Django :: 1.7', - 'Framework :: Django :: 1.8', 'Framework :: Django :: 1.9', + 'Framework :: Django :: 1.10', + 'Framework :: Django :: 1.11', ], license='MIT', install_requires=[ 'django>=1.7', ], tests_require=[ - 'psycopg2>=2.4.5', + 'psycopg2', 'django-nose>=1.4', - 'mock>=1.0.1', + 'mock', 'coverage>=3.7.1', 'freezegun>=0.3.2', - 'django-dynamic-fixture>=1.8.1' + 'django-dynamic-fixture' ], test_suite='run_tests.run_tests', include_package_data=True, From da8f9083d98de6b7b762f017838d7dd5fa398df4 Mon Sep 17 00:00:00 2001 From: Wes Okes Date: Fri, 15 Sep 2017 15:46:57 -0400 Subject: [PATCH 2/2] bump version --- db_mutex/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_mutex/version.py b/db_mutex/version.py index abeeedb..2b8877c 100644 --- a/db_mutex/version.py +++ b/db_mutex/version.py @@ -1 +1 @@ -__version__ = '0.4.0' +__version__ = '0.5.0'