Skip to content

Commit a0e8fe4

Browse files
committed
update django and python
1 parent 26c7267 commit a0e8fe4

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ language: python
33
python:
44
- '2.7'
55
- '3.4'
6+
- '3.5'
7+
- '3.6'
68
env:
79
global:
810
- DB=postgres
911
matrix:
10-
- DJANGO=">=1.7,<1.8"
11-
- DJANGO=">=1.8,<1.9"
1212
- DJANGO=">=1.9,<1.10"
13+
- DJANGO=">=1.10,<1.11"
14+
- DJANGO=">=1.11,<2.0"
1315
install:
1416
- pip install -q coverage flake8 Django$DJANGO django-nose>=1.4
1517
- python setup.py install

db_mutex/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.1'
1+
__version__ = '0.4.0'

docs/release_notes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Release Notes
22
=============
33

4+
v0.4.0
5+
------
6+
* Fixed docs
7+
48
v0.3.1
59
------
610
* Fixed docs

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,27 @@ 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',
36+
'Programming Language :: Python :: 3.6',
3537
'Intended Audience :: Developers',
3638
'License :: OSI Approved :: MIT License',
3739
'Operating System :: OS Independent',
3840
'Framework :: Django',
39-
'Framework :: Django :: 1.7',
40-
'Framework :: Django :: 1.8',
4141
'Framework :: Django :: 1.9',
42+
'Framework :: Django :: 1.10',
43+
'Framework :: Django :: 1.11',
4244
],
4345
license='MIT',
4446
install_requires=[
4547
'django>=1.7',
4648
],
4749
tests_require=[
48-
'psycopg2>=2.4.5',
50+
'psycopg2',
4951
'django-nose>=1.4',
50-
'mock>=1.0.1',
52+
'mock',
5153
'coverage>=3.7.1',
5254
'freezegun>=0.3.2',
53-
'django-dynamic-fixture>=1.8.1'
55+
'django-dynamic-fixture'
5456
],
5557
test_suite='run_tests.run_tests',
5658
include_package_data=True,

0 commit comments

Comments
 (0)