Skip to content

Commit 4c2002f

Browse files
committed
Merge branch 'master' into speed.python.org
Conflicts: setup.py Both branches changed version.
2 parents d348698 + d35b595 commit 4c2002f

64 files changed

Lines changed: 2866 additions & 1345 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
language: python
22
python:
3-
- "2.6"
4-
- "2.7"
5-
# - "3.2"
6-
# - "3.3"
7-
# - "pypy"
8-
3+
- 2.6
4+
- 2.7
5+
- 3.4
96
env:
10-
- DJANGO_VERSION=1.6
11-
- DJANGO_VERSION=1.5.5
12-
- DJANGO_VERSION=1.4.9
13-
14-
# command to install dependencies
7+
- DJANGO_VERSION=1.8.5
8+
- DJANGO_VERSION=1.6.11
9+
- DJANGO_VERSION=1.4.22
10+
matrix:
11+
exclude:
12+
- python: 2.6
13+
env: DJANGO_VERSION=1.8.5
14+
- python: 3.4
15+
env: DJANGO_VERSION=1.4.22
1516
install:
1617
- pip install -q Django==$DJANGO_VERSION
1718
- python setup.py install
18-
19-
# command to run tests
2019
script:
2120
- python setup.py test
2221
- python manage.py test codespeed

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
== Change Log ==
22

3+
=== Version 0.11a0 ===
4+
* NEW #191: Django 1.7 and 1.8 support
5+
* NEW #192: Python 3.4 support
6+
* FIX #190: Upgrade to jqPlot 1.0.8 and jQuery 1.8
7+
8+
9+
=== Version 0.10.1, November 1, 2015 ===
10+
* NEW #169: nomeata added admin action to recalculate reports
11+
* NEW #169: nomeata increased allowed length for benchmark names to 100 chars
12+
* FIX #186: pepsiman fixed getting commit logs for non-default branches on mercurial
13+
* FIX #170: Show infinite increase instead of "-"
14+
* FIX: various admin fixes
15+
16+
317
=== Version 0.10.0, December 27, 2013 ===
418
* NEW #108: AlekSi made executable names uniques per project instead of globally
519
* NEW #148: staticfloat added the ability to set benchmark fields when saving results for a new benchmark

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
All files in this work, are now covered by the following copyright notice.
22
Please note that included libraries in the media/ directory may have their own license.
33

4-
Copyright (c) 2009-2014 Miquel Torres <tobami@gmail.com>
4+
Copyright (c) 2009-2015 Miquel Torres <tobami@gmail.com>
55

66
This file is part of Codespeed.
77

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Codespeed
22
[![Build Status](https://travis-ci.org/tobami/codespeed.png?branch=master)](https://travis-ci.org/tobami/codespeed)
33

4-
A web application to monitor and analyze the performance of your code.
4+
Codespeed is a web application to monitor and analyze the performance of your code.
55

6-
Known to be used by [PyPy](http://speed.pypy.org), [Twisted](http://speed.twistedmatrix.com), [RubySpec](http://speed.rubyspec.org) and many more.
6+
Known to be used by [PyPy](http://speed.pypy.org), [Twisted](http://speed.twistedmatrix.com) and others.
77

88
For an overview of some application concepts see the [wiki page](https://github.com/tobami/codespeed/wiki/Overview)
99

1010
# Installation
1111

12-
You will need Python 2.6 or 2.7.
12+
You will need Python 2.7 or 3.4+.
1313

1414
To install dependencies and the codespeed Django app:
1515

@@ -33,13 +33,9 @@ can take a long time. Please be patient.
3333
the data to a database named `data.db`
3434
* Create the DB by typing from the root directory:
3535

36-
python manage.py syncdb
37-
38-
* Create an admin user in the process.
39-
* Execute DB migrations:
40-
4136
python manage.py migrate
4237

38+
* Create an admin user in the process.
4339
* For testing purposes, you can now start the development server:
4440

4541
python manage.py runserver 8000

codespeed/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class EnvironmentAdmin(admin.ModelAdmin):
5656

5757
class ResultAdmin(admin.ModelAdmin):
5858
list_display = ('revision', 'benchmark', 'executable', 'environment',
59-
'value', 'date', 'environment')
59+
'value', 'date')
6060
list_filter = ('environment', 'executable', 'date', 'benchmark')
6161

6262
admin.site.register(Result, ResultAdmin)

0 commit comments

Comments
 (0)