-
Notifications
You must be signed in to change notification settings - Fork 107
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
Adding extra docs requirements and tweak conf #181
Conversation
What's the code for running the documentation build? Just wanted to test this out locally to see if it works. Edit: nevermind, figured it out:
|
Can you try removing the |
I noticed that readthedocs.yaml can use diff --git a/readthedocs.yml b/readthedocs.yml
index b969696..f77e621 100644
--- a/readthedocs.yml
+++ b/readthedocs.yml
@@ -22,3 +22,4 @@ python:
install:
- requirements: requirements-docs.txt
- requirements: requirements.txt
+ method: setuptools |
Codecov Report
@@ Coverage Diff @@
## development #181 +/- ##
============================================
Coverage 48.17% 48.17%
============================================
Files 17 17
Lines 1179 1179
Branches 262 262
============================================
Hits 568 568
Misses 570 570
Partials 41 41 Continue to review full report at Codecov.
|
I was wondering about that. Currently it's actually doing pip install ... it's strange that doesn't work since the pypi test works and that does a pip install ... |
I agree - odd indeed. I was able to get the docs to build on readthedocs by using this option (see #182). Thoughts or preferences for which approach we use? |
Cool! If using setuptools work, then great. That's totally fine. We can close this PR in favor of #182. @JessicaS11 Could you bring in the doc workflow to your PR? Thanks! It would be good for us to test the doc build 😄 |
@lsetiawan Can I delete this branch? |
Overview
This PR is my attempt in fixing the read the docs issue that's happening. I grabbed an example from https://github.com/django-auth-ldap/django-auth-ldap/blob/master/docs/conf.py