-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modernize .readthedocs.yml #130
Conversation
Kudos, SonarCloud Quality Gate passed! |
extras_require = { | ||
"docs": ["sphinx >= 1.4", "sphinx_rtd_theme", "sphinx-autodoc-typehints", "typing_extensions"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed anymore, the default readthedocs configuration already has this libraries installed.
@@ -7,9 +7,8 @@ | |||
with open("CHANGELOG.rst", encoding="UTF-8") as changelog_file: | |||
history = changelog_file.read() | |||
|
|||
requirements = ["attrs>=18.1.0", "numpy>=1.11.0", "oop-ext>=1.1"] | |||
requirements = ["attrs>=18.1.0", "numpy>=1.11.0", "oop-ext>=1.1", "typing_extensions"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do use typing_extensions
in barril
and were not declaring this dependency explicitly.
No description provided.