Skip to content

Commit

Permalink
remove sanic from install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
yunstanford committed Nov 11, 2018
1 parent 83306d8 commit cb7aa24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pytest_sanic/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.13'
__version__ = '0.1.14'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@

install_requires = [
'pytest',
'sanic',
'aiohttp',
'async_generator',
]

tests_require = []

setup(name='pytest-sanic',
version='0.1.13',
version='0.1.14',
description='',
long_description=open(README_PATH).read(),
author='Yun Xu',
Expand All @@ -33,6 +32,8 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={
'pytest11': ['sanic = pytest_sanic.plugin'],
Expand Down

1 comment on commit cb7aa24

@vltr
Copy link

@vltr vltr commented on cb7aa24 Nov 12, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @yunstanford 😉

Please sign in to comment.