Skip to content

Commit 285299c

Browse files
committed
Fix setup.py to allow django 1.8, like requirements.txt
1 parent 3ea5d2b commit 285299c

6 files changed

Lines changed: 13 additions & 9 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ sample_project/repos/*
44
override
55
build
66
dist
7+
codespeed.egg-info/
8+

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ python:
33
- 2.7
44
- 3.4
55
env:
6-
- DJANGO_VERSION=1.8.5
6+
- DJANGO_VERSION=1.8.8
77
- DJANGO_VERSION=1.6.11
88
install:
99
- pip install -q Django==$DJANGO_VERSION
1010
- python setup.py install
1111
script:
1212
- python setup.py test
1313
- python manage.py test codespeed
14+

CHANGELOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
== Change Log ==
22

3-
=== Version 0.11a0 ===
3+
=== Version 0.11a1 ===
44
* 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
5+
* NEW #192: Initial Python 3.4 support
6+
* FIX #199: str4d upgraded all javascript libraries. Most importantly jqPlot to 1.0.9 and jQuery to 1.12.3
77

88

99
=== Version 0.10.1, November 1, 2015 ===

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-2015 Miquel Torres <tobami@gmail.com>
4+
Copyright (c) 2009-2016 Miquel Torres <tobami@gmail.com>
55

66
This file is part of Codespeed.
77

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
Django>=1.4,<1.9
1+
Django>=1.6,<1.9
22
isodate>=0.4.7,<0.6
3+

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
setup(
44
name='codespeed',
5-
version='0.11.0a0',
5+
version='0.11.0a1',
66
author='Miquel Torres',
77
author_email='tobami@gmail.com',
88
url='https://github.com/tobami/codespeed',
99
download_url="https://github.com/tobami/codespeed/tags",
1010
license='GNU Lesser General Public License version 2.1',
1111
keywords=["benchmarking", "visualization"],
12-
install_requires=['django>=1.4,<1.8', 'isodate>=0.4.7,<0.6'],
12+
install_requires=['django>=1.6,<1.9', 'isodate>=0.4.7,<0.6'],
1313
packages=find_packages(exclude=['ez_setup', 'sample_project']),
1414
description='A web application to monitor and analyze the performance of your code',
1515
include_package_data=True,
@@ -22,10 +22,10 @@
2222
'Operating System :: OS Independent',
2323
'Programming Language :: Python',
2424
'Programming Language :: Python :: 2',
25-
'Programming Language :: Python :: 2.6',
2625
'Programming Language :: Python :: 2.7',
2726
'Programming Language :: Python :: 3',
2827
'Programming Language :: Python :: 3.4',
28+
'Programming Language :: Python :: 3.5',
2929
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
3030
]
3131
)

0 commit comments

Comments
 (0)