Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 482093c

Browse files
authored
Merge pull request #142 from CSCfi/dev
hotfix readthedocs build fix
2 parents 89de6dc + 247fcca commit 482093c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __getattr__(cls, name):
2525

2626

2727
# List modules need to be mocked
28-
MOCK_MODULES = ['aiohttp', 'asyncpg', 'cyvcf2',
28+
MOCK_MODULES = ['aiohttp', 'asyncpg', 'cyvcf2', 'aiohttp_cors',
2929
'Cython', 'numpy', 'authlib.jose', 'authlib.jose.errors',
3030
'uvloop', 'aiocache', 'aiocache.serializers']
3131
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
'Programming Language :: Python :: 3.6',
4646
'Programming Language :: Python :: 3.7',
4747
],
48-
install_requires=['aiohttp', 'asyncpg', 'authlib', 'aiohttp_cors',
49-
'jsonschema', 'gunicorn>=20.0.1'],
48+
install_requires=['asyncpg', 'authlib', 'aiohttp_cors',
49+
'jsonschema', 'gunicorn>=20.0.1', 'aiohttp'],
5050
extras_require={
5151
'test': ['coverage==4.5.4', 'pytest', 'pytest-cov',
5252
'coveralls', 'testfixtures', 'tox',

0 commit comments

Comments
 (0)