Skip to content

Commit

Permalink
added previous missing docs-dependency sphinx-autodoc-typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
skallfass committed Sep 11, 2019
1 parent 135cbe6 commit 26bc278
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cenv_tool"
version = "1.1.0"
version = "1.1.1"
description = "conda environment creation and update from meta.yaml"
license = "MIT"
authors = ["Simon Kallfass <skallfass@ouroboros.info>"]
Expand Down Expand Up @@ -44,13 +44,11 @@ init_cenv = "cenv_tool.init_cenv:main"


[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints"]
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx_rtd_theme"]
tests = ["pytest", "pytest-cov", "pytest-datafiles"]





[tool.dephell.main]
# read from poetry format
from = {format = "poetry", path = "pyproject.toml"}
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -21,7 +21,7 @@
setup(
long_description=readme,
name='cenv_tool',
version='1.1.0',
version='1.1.1',
description='conda environment creation and update from meta.yaml',
python_requires='==3.*,>=3.7.0',
project_urls={
Expand Down Expand Up @@ -61,7 +61,8 @@
'pytest-datafiles==2.*,>=2.0.0'
],
'docs': [
'sphinx==2.*,>=2.0.0', 'sphinx-autodoc-typehints==1.*,>=1.0.0'
'sphinx==2.*,>=2.0.0', 'sphinx-autodoc-typehints==1.*,>=1.0.0',
'sphinx-rtd-theme==0.*,>=0.0.0'
]
},
)

0 comments on commit 26bc278

Please sign in to comment.