Please file an issue if you encounter a bug.
If you would like to submit a bug-fix or improve an existing feature, please submit a pull request following the process outlined below.
If you would like to contribute, but don't know what to add, you can look for open issues labeled
good first issue
, or take a look at the funhouse repo to
create and add your own ML application using Runhouse!
If you want to modify code, please follow the instructions for creating a Pull Request.
- Fork the Github repository, and then clone the forked repo to local.
git clone [email protected]:<your username>/runhouse.git
cd runhouse
git remote add upstream https://github.com/run-house/runhouse.git
- Create a new branch for your development changes:
git checkout -b branch-name
- Install Runhouse
pip install -e .
-
Develop your features
-
Download and run pre-commit to automatically format your code using black and ruff.
pip install pre-commit
pre-commit run --files [FILES [FILES ...]]
- Add, commit, and push your changes. Create a "Pull Request" on GitHub to submit the changes for review.
git push -u origin branch-name
To run tests, please install pytest
.
pip install pytest
Additional optional packages to install to run related tests:
aws related tests
s3fs==2023.1.0
awscli==1.25.60
boto3==1.24.59
pycryptodome==3.12.0
google related tests
google-api-python-client
google-cloud-storage
gcsfs
table tests
datasets
dask
Docs source code is located in docs/
. To build and review docs locally:
pip install -r docs/requirements.txt
cd docs/
make clean html