Skip to content

Commit 9cef4ef

Browse files
authored
Merge pull request #45 from jaredlewis/develop
Add python 3.5 support drop django 1.7 support
2 parents bec237c + 1530202 commit 9cef4ef

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ language: python
33
python:
44
- '2.7'
55
- '3.4'
6+
- '3.5'
67
env:
78
global:
89
- DB=postgres
910
matrix:
10-
- DJANGO=">=1.7,<1.8"
1111
- DJANGO=">=1.8,<1.9"
1212
- DJANGO=">=1.9,<1.10"
1313
install:

db_mutex/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.1'
1+
__version__ = '0.4.0'

docs/release_notes.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Release Notes
22
=============
33

4+
v0.4.0
5+
------
6+
* Add python 3.5 support, drop django 1.7 support
7+
48
v0.3.1
59
------
610
* Fixed docs
@@ -19,16 +23,13 @@ v0.1.8
1923

2024
v0.1.7
2125
------
22-
2326
* Fixed upload to pypi
2427

2528
v0.1.6
2629
------
27-
2830
* Updated for Django 1.7 compatibility
2931

3032
v0.1.4
3133
------
32-
3334
* This release of django-db-mutex includes docs buildout
3435
* python 3.3, 3.4 compatibility

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ def get_version():
3232
'Programming Language :: Python',
3333
'Programming Language :: Python :: 2.7',
3434
'Programming Language :: Python :: 3.4',
35+
'Programming Language :: Python :: 3.5',
3536
'Intended Audience :: Developers',
3637
'License :: OSI Approved :: MIT License',
3738
'Operating System :: OS Independent',
3839
'Framework :: Django',
39-
'Framework :: Django :: 1.7',
4040
'Framework :: Django :: 1.8',
4141
'Framework :: Django :: 1.9',
4242
],
4343
license='MIT',
4444
install_requires=[
45-
'django>=1.7',
45+
'django>=1.8',
4646
],
4747
tests_require=[
4848
'psycopg2>=2.4.5',

0 commit comments

Comments
 (0)