Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
prozorro-sale
Cors
Commits
dc2b39c9
Commit
dc2b39c9
authored
Mar 23, 2017
by
Vladimir Rutsky
Committed by
GitHub
Mar 23, 2017
Browse files
Merge pull request #75 from aio-libs/v0.5.1
0.5.1 release
parents
1fca7f24
5f27320d
Changes
4
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
dc2b39c9
...
...
@@ -13,10 +13,9 @@ before_install:
install
:
-
pip install --upgrade pip setuptools wheel
-
pip install -Ur requirements-dev.txt
-
python setup.py develop
# aiohttp git repo has only *.pyx files, so install cython too.
-
'
[
-z
"$MASTER_AIOHTTP"
]
||
pip
install
-U
cython
git+https://github.com/KeepSafe/aiohttp.git'
-
pip install -Ur requirements-dev.txt
before_script
:
# Start X-server for Selenium tests.
...
...
CHANGES.rst
View file @
dc2b39c9
CHANGES
=======
0.5.1 (2017-03-23)
------------------
- Enforce ``aiohttp`` version to be less than 2.0.
Newer ``aiohttp`` releases will be supported in the next release.
0.5.0 (2016-11-18)
------------------
- Fix compatibility with aiohttp 1.1
- Fix compatibility with
``
aiohttp
``
1.1
0.4.0 (2016-04-04)
...
...
aiohttp_cors/__about__.py
View file @
dc2b39c9
...
...
@@ -19,10 +19,10 @@ This module must be stand-alone executable.
"""
__title__
=
"aiohttp-cors"
__version__
=
"0.5.
0
"
__version__
=
"0.5.
1
"
__author__
=
"Vladimir Rutsky"
__email__
=
"vladimir@rutsky.org"
__summary__
=
"CORS support for aiohttp"
__uri__
=
"https://github.com/aio-libs/aiohttp-cors"
__license__
=
"Apache License, Version 2.0"
__copyright__
=
"2015, 2016 {}"
.
format
(
__author__
)
__copyright__
=
"2015, 2016
, 2017
{}"
.
format
(
__author__
)
setup.py
View file @
dc2b39c9
...
...
@@ -65,7 +65,7 @@ setup(
],
test_suite
=
"tests"
,
install_requires
=
[
"aiohttp>=1.1"
,
"aiohttp>=1.1
,<2.0
"
,
],
extras_require
=
{
# TODO: Rich comparison in environment markers are broken in
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment