Skip to content

Commit

Permalink
Manually generate requirements.txt
Browse files Browse the repository at this point in the history
The pipenv-to-requirements package was generating two separate files for
Pipenv packages and dev-packages, and only one of these could be passed
to Read the Docs. This was causing the build on Read the Docs to fail
because some packages were not installed.

Manually generating requirements.txt all the dev packages should fix
this issues.
  • Loading branch information
yi-jiayu committed Apr 6, 2019
1 parent b18ae64 commit 0e0798b
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 113 deletions.
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ verify_ssl = true
pytest = "*"
pytest-cov = "*"
sphinx = "*"
pipenv-to-requirements = "*"
sphinx-rtd-theme = "*"
sphinx-autodoc-typehints = "*"
twine = "*"
Expand Down
45 changes: 4 additions & 41 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 0 additions & 58 deletions requirements-dev.txt

This file was deleted.

51 changes: 38 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,52 @@
################################################################################
# This requirements file has been automatically generated from `Pipfile` with
# `pipenv-to-requirements`
#
#
# This has been done to maintain backward compatibility with tools and services
# that do not support `Pipfile` yet.
#
# Do NOT edit it directly, use `pipenv install [-d]` to modify `Pipfile` and
# `Pipfile.lock` and then regenerate `requirements*.txt`.
################################################################################

alabaster==0.7.12
appdirs==1.4.3
atomicwrites==1.3.0
attrs==19.1.0
Babel==2.6.0
bleach==3.1.0
cached-property==1.5.1
certifi==2019.3.9
chardet==3.0.4
coverage==4.5.3
defusedxml==0.5.0
docutils==0.14
idna==2.8
imagesize==1.1.0
isodate==0.6.0
Jinja2==2.10
lxml==4.3.3
MarkupSafe==1.1.1
more-itertools==7.0.0
packaging==19.0
pbr==5.1.3
pipenv==2018.11.26
pipenv-to-requirements==0.7.1
pkginfo==1.5.0.1
pluggy==0.9.0
py==1.8.0
Pygments==2.3.1
pyparsing==2.3.1
pytest==4.4.0
pytest-cov==2.6.1
pytz==2018.9
requests-toolbelt==0.9.1
readme-renderer==24.0
requests==2.21.0
requests-toolbelt==0.9.1
six==1.12.0
snowballstemmer==1.2.1
Sphinx==2.0.0
sphinx-autodoc-typehints==1.6.0
sphinx-rtd-theme==0.4.3
sphinxcontrib-applehelp==1.0.1
sphinxcontrib-devhelp==1.0.1
sphinxcontrib-htmlhelp==1.0.1
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.2
sphinxcontrib-serializinghtml==1.1.1
tqdm==4.31.1
twine==1.13.0
urllib3==1.24.1
virtualenv==16.4.3
virtualenv-clone==0.5.2
webencodings==0.5.1
zeep==3.3.1

0 comments on commit 0e0798b

Please sign in to comment.