Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

DataFusion docs

Dependencies

It's recommended to install build dependencies and build the documentation inside a Python virtualenv.

  • Python
  • pip install -r requirements.txt

Build

make html

Release

The documentation is served through the arrow-site repo. To release a new version of the docs, follow these steps:

  1. Run make html inside docs folder to generate the docs website inside the build/html folder.
  2. Clone the arrow-site repo
  3. Checkout to the asf-site branch (NOT master)
  4. Copy build artifacts into arrow-site repo's datafusion folder with a command such as
  • cp -rT ./build/html/ ../../arrow-site/datafusion/ (doesn't work on mac)
  • rsync -avzr ./build/html/ ../../arrow-site/datafusion/
  1. Commit changes in arrow-site and send a PR.