requirements-doc.txt 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Production requirements. This is what readthedocs.com picks up
  2. # Python / ML libraries
  3. accelerate>=0.17.0
  4. click
  5. colorama
  6. colorful
  7. # Newer versions of fairscale do not support Python 3.6 even though they still have wheels for it.
  8. # Have to manually pin it: https://github.com/facebookresearch/fairscale/issues/962
  9. fairscale; python_version >= '3.7'
  10. fairscale<=0.4.0; python_version < '3.7'
  11. filelock
  12. flask
  13. flatbuffers
  14. fastapi
  15. jsonschema
  16. mock
  17. numpy
  18. scikit-image
  19. pandas
  20. pickle5
  21. pillow
  22. pyarrow
  23. pydantic < 1.10.0
  24. pyyaml
  25. scikit-optimize
  26. redis
  27. starlette
  28. uvicorn==0.16.0
  29. werkzeug
  30. wandb
  31. tensorflow; sys_platform != 'darwin' or platform_machine != 'arm64'
  32. tensorflow-macos; sys_platform == 'darwin' and platform_machine == 'arm64'
  33. tensorflow-datasets
  34. torch
  35. torchvision
  36. transformers
  37. # Train
  38. mxnet==1.8.0.post0
  39. # Ray libraries
  40. git+https://github.com/ray-project/tune-sklearn@master#tune-sklearn
  41. git+https://github.com/ray-project/xgboost_ray@master#egg=xgboost_ray
  42. git+https://github.com/ray-project/lightgbm_ray@main#lightgbm_ray
  43. git+https://github.com/ray-project/ray_lightning@main#ray_lightning
  44. # Syntax highlighting
  45. Pygments==2.13.0
  46. # Sphinx
  47. sphinx==4.3.2
  48. sphinx-click==3.0.2
  49. sphinx-copybutton==0.4.0
  50. sphinxemoji==0.2.0
  51. sphinx-jsonschema==1.17.2
  52. sphinx-version-warning==1.1.2
  53. sphinx-book-theme==0.3.3
  54. sphinx-external-toc==0.2.4
  55. sphinx-sitemap==2.2.0
  56. sphinxcontrib-redoc==1.6.0
  57. sphinx-tabs==3.4.0
  58. sphinx-remove-toctrees==0.0.3
  59. autodoc_pydantic==1.6.1
  60. sphinx_design==0.4.1
  61. # MyST
  62. myst-parser==0.15.2
  63. myst-nb==0.13.1
  64. # Jupyter conversion
  65. jupytext==1.13.6
  66. # Pin urllib to avoid downstream ssl incompatibility issues
  67. urllib3 < 1.27