Skip to content

Commit ed57ec7

Browse files
committed
Add Python 2.6, Django 1.3 to travis configuration
1 parent 626d9e1 commit ed57ec7

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*.db
33
sample_project/repos/*
44
override
5+
build
6+
dist

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
language: python
22
python:
33
# - "2.5"
4-
# - "2.6"
4+
- "2.6"
55
- "2.7"
66
# - "3.2"
77
# - "3.3"
88
# - "pypy"
99

1010
env:
11-
- DJANGO_VERSION=1.4.4
12-
- DJANGO_VERSION=1.5.1
1311
- DJANGO_VERSION=1.6
12+
- DJANGO_VERSION=1.5.5
13+
- DJANGO_VERSION=1.4.9
14+
- DJANGO_VERSION=1.3.7
1415

1516
# command to install dependencies
1617
install:

sample_project/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<title>{% block title %}MyProject's Speed Center{% endblock %}</title>
66
<meta name="description" content="A performance analysis tool for software projects. It shows performance regresions and allows comparing different applications or implementations">
7-
<meta name="keywords" content="performance, test, interpreter, plots, charts">
7+
<meta name="keywords" content="performance, test, plots, charts">
88
<meta http-equiv="content-type" content="text/html;charset=utf-8">
99
<link href="{{ STATIC_URL }}css/main.css" rel="stylesheet" type="text/css">
1010
{% block extra_head %}{% endblock %}

0 commit comments

Comments
 (0)