Skip to content

Commit

Permalink
Move pandas_sphinx_theme requirement to separate file
Browse files Browse the repository at this point in the history
Its current form is not accepted by pypi (awaiting pypi release of this package)
  • Loading branch information
chrisjsewell committed Mar 5, 2020
1 parent 17a0893 commit d5e2e27
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
- restore_cache:
keys:
- cache-pip
- run: pip install --user -e .[sphinx,rtd]
- run: |
pip install --user -e .[sphinx,rtd]
pip install -r docs/requirements.txt
- save_cache:
key: cache-pip
paths:
Expand Down
1 change: 1 addition & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ python:
extra_requirements:
- sphinx
- rtd
- requirements: docs/requirments.txt
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
git+https://github.com/pandas-dev/pandas-sphinx-theme.git@master
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,7 @@
"pytest-regressions",
"beautifulsoup4",
],
"rtd": [
"sphinxcontrib-bibtex",
"ipython",
(
"pandas_sphinx_theme @ "
"https://github.com/pandas-dev/pandas-sphinx-theme/archive/master.zip"
),
],
"rtd": ["sphinxcontrib-bibtex", "ipython"],
},
zip_safe=True,
)

0 comments on commit d5e2e27

Please sign in to comment.