To report bugs and issues with Daft, please report in detail:
- Operating system
- Daft version
- Python version
- Runner that your code is using
Please start a GitHub Discussion in our Ideas channel. Once the feature is clarified, fleshed out and approved, the corresponding issue(s) will be created from the GitHub discussion.
When proposing features, please include:
- Feature Summary (no more than 3 sentences)
- Example usage (pseudo-code to show how it is used)
- Corner-case behavior (how should this code behave in various corner-case scenarios)
To set up your development environment:
- Ensure that your system has a suitable Python version installed (>=3.7)
- Install the Rust compilation toolchain
- Clone the Daft repo:
git clone [email protected]:Eventual-Inc/Daft.git
- Run
make venv
from your new cloned Daft repository to create a new virtual environment with all of Daft's development dependencies installed - Run
make hooks
to install pre-commit hooks: these will run tooling on every commit to ensure that your code meets Daft development standards
make build
: recompile your code after modifying any Rust code insrc/
make test
: run testsDAFT_RUNNER=ray make test
: set the runner to the Ray runner and run tests (DAFT_RUNNER defaults topy
)