Skip to content

Commit

Permalink
fix for latest isort, update HISTORY
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Feb 1, 2018
1 parent cd7fd8d commit d41dfc8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
History
-------

0.7.0 (2018-01-28)
0.7.1 (2018-02-01)
------------------
* set ``Access-Control-Allow-Origin`` for static files, #169

0.7.0 (2018-01-18)
------------------
* use ``static_root_url`` on with ``--static`` option #170
* fix ``unquote`` import #167
Expand Down
3 changes: 2 additions & 1 deletion aiohttp_devtools/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@

from .exceptions import AiohttpDevException
from .logs import main_logger, setup_logging
from .runserver import INFER_HOST, run_app
from .runserver import runserver as _runserver
from .runserver import INFER_HOST, run_app, serve_static
from .runserver import serve_static
from .start import DatabaseChoice, ExampleChoice, SessionChoices, StartProject, TemplateChoice
from .start.main import check_dir_clean, enum_choices, enum_default
from .version import VERSION
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ addopts = --isort
timeout = 10
isort_ignore =
aiohttp_devtools/start/template/*.py
tests/test_runserver_main.py

[flake8]
max-line-length = 120
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def pytest_addoption(parser):
'app.py': """\
from aiohttp import web
async def hello(request):
return web.Response(text='hello world')
Expand Down

0 comments on commit d41dfc8

Please sign in to comment.