Updated test runners.

This commit is contained in:
Martin Mahner 2017-01-19 12:16:20 +01:00
parent a6a5bc726b
commit f9813a6fbe
4 changed files with 17 additions and 5 deletions

View file

@ -3,11 +3,12 @@ language: python
python: python:
- 2.7 - 2.7
- 3.5 - 3.5
- 3.6
env: env:
- DJANGO: django>=1.8,<1.9 - DJANGO: django>=1.8,<1.9
- DJANGO: django>=1.9,<1.10 - DJANGO: django>=1.9,<1.10
- DJANGO: django>=1.10 - DJANGO: django>=1.10,<1.11
before_install: before_install:
- pip install codecov - pip install codecov

View file

@ -1,6 +1,18 @@
Changelog Changelog
========= =========
2.13a (2017-01-19)
------------------
* (Backwards incompatible) Removal of django-mptt and therefor the removal of a
tree based snippet list, due to performance reasons with large snippet counts.
Snippets still have a 'parent' relation if it's an answer of another snippet,
however this is no longer a Nested Set. The UI is simplified too and the user
can now only compare an answer to it's parent snippet. I believe this is the
major use case anyway.
* (Backwards incompatible) Removal of the "Gist" button feature.
* Python 3.6 compatibility and tests.
2.12 (2016-09-06) 2.12 (2016-09-06)
----------------- -----------------

View file

@ -24,7 +24,7 @@ long_description = u'\n\n'.join((
setup( setup(
name='dpaste', name='dpaste',
version='2.12', version='2.13a',
description='dpaste is a Django based pastebin. It\'s intended to run ' description='dpaste is a Django based pastebin. It\'s intended to run '
'separately but its also possible to be installed into an ' 'separately but its also possible to be installed into an '
'existing Django project like a regular app.', 'existing Django project like a regular app.',
@ -51,7 +51,6 @@ setup(
install_requires=[ install_requires=[
'django>=1.8', 'django>=1.8',
'pygments>=1.6', 'pygments>=1.6',
'requests>=2.0.0',
], ],
tests_require=[ tests_require=[
'tox>=1.6.1' 'tox>=1.6.1'

View file

@ -1,7 +1,7 @@
[tox] [tox]
toxworkdir=/tmp/tox/dpaste toxworkdir=/tmp/tox/dpaste
envlist= envlist=
py{27,35}-django-{18,19,latest} py{27,36}-django-{18,19,110,111}
[testenv] [testenv]
install_command = install_command =
@ -14,4 +14,4 @@ deps=
# Django versions # Django versions
django-18: django>=1.8,<1.9 django-18: django>=1.8,<1.9
django-19: django>=1.9,<1.10 django-19: django>=1.9,<1.10
django-latest: django>=1.10 django-110: django>=1.10,<1.11