Skip to content

Commit 8c56e68

Browse files
authored
Merge pull request #53 from ambitioninc/develop
1.0.0
2 parents e16e763 + 33d29ad commit 8c56e68

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
sudo: false
22
language: python
33
python:
4-
- '2.7'
5-
- '3.4'
64
- '3.5'
75
- '3.6'
86
env:
97
global:
108
- DB=postgres
119
matrix:
12-
- DJANGO=">=1.9,<1.10"
13-
- DJANGO=">=1.10,<1.11"
1410
- DJANGO=">=1.11,<2.0"
11+
- DJANGO=">=2.0,<2.1"
1512
install:
1613
- pip install -q coverage flake8 Django$DJANGO django-nose>=1.4
1714
- python setup.py install

db_mutex/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.5.0'
1+
__version__ = '1.0.0'

docs/release_notes.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Release Notes
22
=============
33

4+
v1.0.0
5+
------
6+
* Drop Django 1.9 support
7+
* Drop Django 1.10 support
8+
* Add Django 2.0 support
9+
* Drop python 2.7 support
10+
* Drop python 3.4 support
11+
412
v0.5.0
513
------
614
* Add python 3.6 support

publish.py

+8
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,11 @@
33
subprocess.call(['pip', 'install', 'wheel'])
44
subprocess.call(['python', 'setup.py', 'clean', '--all'])
55
subprocess.call(['python', 'setup.py', 'register', 'sdist', 'bdist_wheel', 'upload'])
6+
subprocess.call(['rm', '-r', 'dist/'])
7+
subprocess.call(['pip', 'install', 'wheel'])
8+
subprocess.call(['pip', 'install', 'twine'])
9+
subprocess.call(['python', 'setup.py', 'clean', '--all'])
10+
subprocess.call(['python', 'setup.py', 'register', 'sdist', 'bdist_wheel'])
11+
subprocess.call(['twine', 'upload', 'dist/*'])
12+
subprocess.call(['rm', '-r', 'dist/'])
13+
subprocess.call(['rm', '-r', 'build/'])

setup.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,18 @@ def get_version():
3030
packages=find_packages(),
3131
classifiers=[
3232
'Programming Language :: Python',
33-
'Programming Language :: Python :: 2.7',
34-
'Programming Language :: Python :: 3.4',
3533
'Programming Language :: Python :: 3.5',
3634
'Programming Language :: Python :: 3.6',
3735
'Intended Audience :: Developers',
3836
'License :: OSI Approved :: MIT License',
3937
'Operating System :: OS Independent',
4038
'Framework :: Django',
41-
'Framework :: Django :: 1.9',
42-
'Framework :: Django :: 1.10',
4339
'Framework :: Django :: 1.11',
40+
'Framework :: Django :: 2.0',
4441
],
4542
license='MIT',
4643
install_requires=[
47-
'django>=1.8',
44+
'Django>=1.11',
4845
],
4946
tests_require=[
5047
'psycopg2',

0 commit comments

Comments
 (0)