Skip to content

Commit

Permalink
New release (0.10.0) and tox entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
zlorf committed Sep 25, 2016
1 parent 124d543 commit 2cd55d4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ Requirements
+------------------+------------+--------------+
| Dbsettings | Python | Django |
+==================+============+==============+
| ==0.10 | 3.4 - 3.5 | 1.7 - 1.10 |
| +------------+--------------+
| | 3.2 - 3.3 | 1.7 - 1.8 |
| +------------+--------------+
| | 2.7 | 1.7 - 1.10 |
+------------------+------------+--------------+
| ==0.9 | 3.4 - 3.5 | 1.7 - 1.9 |
| +------------+--------------+
| | 3.2 - 3.3 | 1.7 - 1.8 |
Expand Down Expand Up @@ -487,6 +493,8 @@ some of the settings provided earlier in this document::
Changelog
=========

**0.10.0** (25/09/2016)
- Added compatibility with Django 1.10
**0.9.3** (02/06/2016)
- Fixed (hopefully for good) problem with ImageValue in Python 3 (thanks rolexCoder)
**0.9.2** (01/05/2016)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

# Dynamically calculate the version based on dbsettings.VERSION
version_tuple = (0, 9, 3)
version_tuple = (0, 10, 0)
if version_tuple[2] is not None:
if type(version_tuple[2]) == int:
version = "%d.%d.%s" % version_tuple
Expand Down
15 changes: 14 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ envlist =
py3-dj-1.7.X,
py3-dj-1.8.X,
py3-dj-1.9.X,
py3-dj-1.10.X,
dj-1.10.X,
dj-1.9.X,
dj-1.8.X,
dj-1.7.X,
Expand All @@ -16,11 +18,17 @@ commands =
deps =


[testenv:py3-dj-1.10.X]
basepython = python3.5
deps =
{[testenv]deps}
Django>=1.10,<1.11

[testenv:py3-dj-1.9.X]
basepython = python3.5
deps =
{[testenv]deps}
Django>=1.8,<1.9
Django>=1.9,<1.10

[testenv:py3-dj-1.8.X]
basepython = python3.2
Expand All @@ -34,6 +42,11 @@ deps =
{[testenv]deps}
Django>=1.7,<1.8

[testenv:dj-1.10.X]
deps =
{[testenv]deps}
Django>=1.10,<1.11

[testenv:dj-1.9.X]
deps =
{[testenv]deps}
Expand Down

0 comments on commit 2cd55d4

Please sign in to comment.