mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
Fix non-critical issues forgotten for v2.3.0
This commit is contained in:
parent
347df54502
commit
cca9a6da3f
3 changed files with 11 additions and 9 deletions
|
|
@ -13,12 +13,14 @@ env:
|
|||
- DJANGO=1.11
|
||||
matrix:
|
||||
exclude:
|
||||
# Django 1.7 does not support Python 3.5+
|
||||
# Python/Django combinations that aren't officially supported
|
||||
- { python: 3.5, env: DJANGO=1.7 }
|
||||
- { python: 3.6, env: DJANGO=1.7 }
|
||||
# Django 1.9+ does not support Python 3.3
|
||||
- { python: 3.6, env: DJANGO=1.8 }
|
||||
- { python: 3.3, env: DJANGO=1.9 }
|
||||
- { python: 3.6, env: DJANGO=1.9 }
|
||||
- { python: 3.3, env: DJANGO=1.10 }
|
||||
- { python: 3.6, env: DJANGO=1.10 }
|
||||
- { python: 3.3, env: DJANGO=1.11 }
|
||||
include:
|
||||
- { python: 2.7, env: TOXENV=flake8 }
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ Version 2.3.0
|
|||
-------------
|
||||
* Add Facebook Pixel support (Pi Delport)
|
||||
* Add Python 3.6 and Django 1.10 & 1.11 tests (Pi Delport)
|
||||
* Drop Python 3.2 support
|
||||
|
||||
Version 2.2.2
|
||||
-------------
|
||||
|
|
@ -106,7 +107,7 @@ Version 0.11.0
|
|||
--------------
|
||||
* Added support for the Spring Metrics service.
|
||||
* Allow sending events and properties to KISSmetrics (Paul Oswald).
|
||||
* Add support for the Site Speed report in Google Analytics (Uros
|
||||
* Add support for the Site Speed report in Google Analytics (Uros
|
||||
Trebec).
|
||||
|
||||
Version 0.10.0
|
||||
|
|
@ -126,7 +127,7 @@ Version 0.9.1
|
|||
Version 0.9.0
|
||||
-------------
|
||||
* Updated Clicky tracking code to support multiple site ids.
|
||||
* Fixed Chartbeat auto-domain bug when the Sites framework is not used
|
||||
* Fixed Chartbeat auto-domain bug when the Sites framework is not used
|
||||
(Eric Davis).
|
||||
* Improved testing code (Eric Davis).
|
||||
|
||||
|
|
|
|||
9
tox.ini
9
tox.ini
|
|
@ -1,11 +1,10 @@
|
|||
[tox]
|
||||
envlist =
|
||||
# Django 1.7 does not support Python 3.5+
|
||||
# Python/Django combinations that are officially supported
|
||||
py{27,33,34}-django17
|
||||
py{27,33,34,35,36}-django18
|
||||
# Django 1.9+ does not support Python 3.3
|
||||
py{27,34,35,36}-django19
|
||||
py{27,34,35,36}-django110
|
||||
py{27,33,34,35}-django18
|
||||
py{27,34,35}-django19
|
||||
py{27,34,35}-django110
|
||||
py{27,34,35,36}-django111
|
||||
flake8
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue