Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
Drop older Django and Python
Browse files Browse the repository at this point in the history
  • Loading branch information
giginet committed Oct 1, 2016
1 parent 4d5c976 commit 2600df4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 16 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: false
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ django-roughpages
Author
Alisue <lambdalisue@hashnote.net>
Supported python versions
Python 2.6, 2.7, 3.3, 3.4, 3.5
Python 2.7, 3.3, 3.4, 3.5
Supported django versions
Django 1.2 - 1.10
Django 1.7 - 1.10

An template based the flatpages_ like app.
Not like django's flatpages app, django-roughpages render a template file which
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def readlist(filename):
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
Expand Down
16 changes: 4 additions & 12 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,39 +1,31 @@
[tox]
envlist =
py26-django{12,13,14,15,16}
py27-django{12,13,14,15,16,17,18,19,110}
py33-django{15,16,17,18}
py34-django{15,16,17,18,19,110}
py27-django{17,18,19,110}
py33-django{17,18}
py34-django{17,18,19,110}
py35-django{18,19,110}
docs

[testenv]
basepython =
py26: python2.6
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
deps=
django12: django>=1.2,<1.3
django13: django>=1.3,<1.4
django14: django>=1.4,<1.5
django15: django>=1.5,<1.6
django16: django>=1.6,<1.7
django17: django>=1.7,<1.8
django18: django>=1.8,<1.9
django19: django>=1.9,<1.10
django110: django>=1.10,<1.11
-rrequirements-test.txt
coverage
commands=
django{12,13}: pip install --upgrade "django-appconf==1.0.1"
py{33,34,35}: mkdir -p {envdir}/build
py{33,34,35}: cp -rf src {envdir}/build
py{33,34,35}: cp -rf tests {envdir}/build
py{33,34,35}: 2to3 --output-dir={envdir}/build/src -W -n src
py{33,34,35}: 2to3 --output-dir={envdir}/build/tests -W -n tests
py{26,27}: coverage run --source=src/roughpages runtests.py []
py27: coverage run --source=src/roughpages runtests.py []
py{33,34,35}: {envpython} runtests.py --where={envdir}/build []
whitelist_externals=
make
Expand Down

0 comments on commit 2600df4

Please sign in to comment.