Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ language: python
python:
- '2.7'
- '3.4'
- '3.5'
env:
global:
- DB=postgres
matrix:
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"
- DJANGO=">=1.9,<1.10"
install:
Expand Down
2 changes: 1 addition & 1 deletion db_mutex/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.1'
__version__ = '0.4.0'
7 changes: 4 additions & 3 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

v0.4.0
------
* Add python 3.5 support, drop django 1.7 support

v0.3.1
------
* Fixed docs
Expand All @@ -19,16 +23,13 @@ v0.1.8

v0.1.7
------

* Fixed upload to pypi

v0.1.6
------

* Updated for Django 1.7 compatibility

v0.1.4
------

* This release of django-db-mutex includes docs buildout
* python 3.3, 3.4 compatibility
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ def get_version():
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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',
],
license='MIT',
install_requires=[
'django>=1.7',
'django>=1.8',
],
tests_require=[
'psycopg2>=2.4.5',
Expand Down