-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test with python 3.5
- Loading branch information
Koen Van Daele
committed
Sep 27, 2015
1 parent
98b98b4
commit 737feba
Showing
4 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
env: | ||
- LC_ALL=en_US.utf-8 | ||
install: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
0.1.0 (??-09-2015) | ||
0.1.0 (27-09-2015) | ||
------------------ | ||
|
||
- Initial version | ||
- Allows redirecting a a regular URI and with a query service. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
] | ||
|
||
setup(name='urihandler', | ||
version='0.1.0.dev0', | ||
version='0.1.0', | ||
description='A tiny application that handles (cool) uri\'s.', | ||
long_description=README + '\n\n' + CHANGES, | ||
classifiers=[ | ||
|
@@ -29,7 +29,7 @@ | |
], | ||
author='Flanders Heritage Agency', | ||
author_email='[email protected]', | ||
url='http://urihandler.readthedocs.org', | ||
url='https://github.com/OnroerendErfgoed/urihandler', | ||
license='GPLv3', | ||
keywords='web wsgi pyramid uri', | ||
packages=find_packages(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py27, py33, py34, cover | ||
envlist = py27, py34, py35, cover | ||
|
||
[testenv] | ||
commands = | ||
|