mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Updated test runners.
This commit is contained in:
parent
a6a5bc726b
commit
f9813a6fbe
4 changed files with 17 additions and 5 deletions
|
@ -3,11 +3,12 @@ language: python
|
|||
python:
|
||||
- 2.7
|
||||
- 3.5
|
||||
- 3.6
|
||||
|
||||
env:
|
||||
- DJANGO: django>=1.8,<1.9
|
||||
- DJANGO: django>=1.9,<1.10
|
||||
- DJANGO: django>=1.10
|
||||
- DJANGO: django>=1.10,<1.11
|
||||
|
||||
before_install:
|
||||
- pip install codecov
|
||||
|
|
12
CHANGELOG
12
CHANGELOG
|
@ -1,6 +1,18 @@
|
|||
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)
|
||||
-----------------
|
||||
|
||||
|
|
3
setup.py
3
setup.py
|
@ -24,7 +24,7 @@ long_description = u'\n\n'.join((
|
|||
|
||||
setup(
|
||||
name='dpaste',
|
||||
version='2.12',
|
||||
version='2.13a',
|
||||
description='dpaste is a Django based pastebin. It\'s intended to run '
|
||||
'separately but its also possible to be installed into an '
|
||||
'existing Django project like a regular app.',
|
||||
|
@ -51,7 +51,6 @@ setup(
|
|||
install_requires=[
|
||||
'django>=1.8',
|
||||
'pygments>=1.6',
|
||||
'requests>=2.0.0',
|
||||
],
|
||||
tests_require=[
|
||||
'tox>=1.6.1'
|
||||
|
|
4
tox.ini
4
tox.ini
|
@ -1,7 +1,7 @@
|
|||
[tox]
|
||||
toxworkdir=/tmp/tox/dpaste
|
||||
envlist=
|
||||
py{27,35}-django-{18,19,latest}
|
||||
py{27,36}-django-{18,19,110,111}
|
||||
|
||||
[testenv]
|
||||
install_command =
|
||||
|
@ -14,4 +14,4 @@ deps=
|
|||
# Django versions
|
||||
django-18: django>=1.8,<1.9
|
||||
django-19: django>=1.9,<1.10
|
||||
django-latest: django>=1.10
|
||||
django-110: django>=1.10,<1.11
|
||||
|
|
Loading…
Reference in a new issue