Contributing to DocArray
Thanks for your interest in contributing to DocArray. We're grateful for your initiative! ❤️
In this guide, we're going to go through the steps for each kind of contribution, and good and bad examples of what to do. We look forward to your contributions!
- 🐞 Bugs and Issues
- 🥇 Making Your First Submission
- 📝 Code style conventions
- ☑️ Naming Conventions
- ➕ Adding a dependency
- 💥 Testing DocArray Locally and on CI
- 📖 Contributing Documentation
- 🙏 Thank You
🐞 Bugs and issues
Submitting issues
We love to get issue reports. But we love it even more if they're in the right format. For any bugs you encounter, we need you to:
- Describe your problem: What exactly is the bug. Be as clear and concise as possible
- Why do you think it's happening? If you have any insight, here's where to share it
There are also a couple of nice to haves:
- Environment: Operating system, DocArray version, python version,...
- Screenshots: If they're relevant
🥇 Making your first submission
- Associate your local git config with your GitHub account. If this is your first time using git you can follow the steps.
- Fork the DocArray repo and clone onto your computer.
- Configure git pre-commit hooks. Please follow the steps
- Create a new branch, for example
fix-docarray-typo-1
. - Work on this branch to do the fix/improvement.
- Commit the changes with the correct commit style.
- Make a pull request.
- Submit your pull request and wait for all checks to pass.
- Request reviews from one of the code owners.
- Get a LGTM 👍 and PR gets merged.
Note: If you're just fixing a typo or grammatical issue, you can go straight to a pull request.
Associate with your GitHub account
- Confirm username and email on your profile page.
- Set git config on your computer.
- (Optional) Reset the commit author if you made commits before you set the git config.
git checkout YOUR-WORKED-BRANCH
git commit --amend --author="YOUR-GITHUB-NAME <YOUR-GITHUB-EMAIL>" --no-edit
git log # to confirm the change is effective
git push --force
Installing dependencies using Poetry
We use Poetry to manage our dependencies.
To get stared with DocArray development you should do:
pip install poetry
poetry install --all-extras # this will install all of the dependency needed for development
This will automatically create a virtual environment and install all the dependency from the lockfile
of Poetry.
To run your code you need to either activate the environment:
or usepoetry run
:
Install pre-commit hooks
In DocArray we use git's pre-commit hooks in order to make sure the code matches our standards of quality and documentation. It's easy to configure it:
pip install pre-commit
pre-commit install
Now you will be automatically reminded to add docstrings to your code. black
will take care that your code will match our style. Note that black
will fail your commit but reformat your code, so you just need to add the files again and commit again.
Restoring correct git blame
Run git config blame.ignoreRevsFile .github/.git-blame-ignore-revs
📝 Code style conventions:
Most of our codebase is written in Python.
PEP compliance
We comply to the official PEP: E9, F63, F7, F82 code style and required every contribution to follow it. This is enforced by using ruff in our CI and in our pre-commit hooks.
Python version
DocArray is compatible with Python 3.7 and above, therefore we can't accept contribution that used features from the newest Python versions without ensuring compatibility with python 3.7
Code formatting
All of our Python codebase follows formatting standard. We are following the PEP8 standard, and we require that every code contribution is formatted using black with the default configurations. If you have installed the pre-commit hooks the formatting should be automatic on every commit. Moreover, our CI will block contributions that do not respect these conventions.
Type hints
Python is not a strongly typed programming language. Nevertheless, the use of type hints
contributes to a better codebase, especially when reading, reviewing and refactoring. Therefore, we require every contribution
to use type hints, unless there are strong reasons for not using them.
Further, DocArray is type checked using mypy, and all contributions will have to pass this type check.
Note: Example code in the documentation should also follow our code style conventions.
☑️ Naming conventions
For branches, commits, and PRs we follow some basic naming conventions:
- Be descriptive
- Use all lower-case
- Limit punctuation
- Include one of our specified types
- Short (under 70 characters is best)
- In general, follow the Conventional Commit guidelines
Specify the correct types
Type is an important prefix in PR, commit message. For each branch, commit, or PR, we need you to specify the type to help us keep things organized. For example,
feat: add hat wobble
^--^ ^------------^
| |
| +-> Summary in present tense.
|
+-------> Type: build, ci, chore, docs, feat, fix, refactor, style, or test.
ci
: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)docs
: Documentation only changesfeat
: A new featurefix
: A bug fixperf
: A code change that improves performancerefactor
: A code change that neither fixes a bug nor adds a featuretest
: Adding missing tests or correcting existing testschore
: updating grunt tasks etc.; no production code change
Writing your commit message
A good commit message helps us track DocArray's development. A pull request with a bad commit message will be rejected automatically in the CI pipeline.
Commit messages should stick to our naming conventions outlined above, and use the format type(scope?): subject
:
type
is one of the types above.scope
is optional, and represents the module your commit is working on.subject
explains the commit, without an ending period.
For example, a commit that fixes a bug in the executor module should be phrased as: fix(executor): fix the bad naming in init function
Good examples:
Bad examples:
Commit message | Feedback |
---|---|
doc(101): improved 101 document |
Should be docs(101) |
tests(flow): add unit test to document array |
Should be test(array) |
DOC(101): Improved 101 Documentation |
All letters should be in lowercase |
fix(pea): i fix this issue and this looks really awesome and everything should be working now |
Too long |
fix(array):fix array serialization |
Missing space after : |
hello: add hello-world |
Type hello is not allowed |
DCO and signed commit
Commits need to be signed. Indeed, the DocArray repo enforces the Developer Certificate of Origin via the DCO GitHub app.
To sign your commits you need to use the -s
argument when committing:
What if I mess up?
We all make mistakes. GitHub has a guide on rewriting commit messages so they can adhere to our standards.
You can also install commitlint onto your own machine and check your commit message by running:
Naming your pull request
We don't enforce naming of PRs and branches, but we recommend you follow the same style. It can simply be one of your commit messages, just copy/paste it, e.g. fix(readme): improve the readability and move sections
.
➕ Adding a dependency
To add a dependency to DocArray, edit pyproject.toml
and add your dependency in the [tool.poetry.dependencies]
section.
Always overwrite poetry default version number (if you used poetry add XYZ
):
- Pick an appropriate version number. Don't pick the latest version, but rather the oldest that is still compatible.
- Use the >=
notation instead of ~
to not lock upper limit.
If appropriate, make the dependency optional. For example if it is a new library for a new modality or new vector database.
mylib = {version = ">=X.y.z", optional = true }
You will also need to add an extra:
Note: Manual editing of pyproject.toml
is equivalent to poetry add "mylib>=3.9" -E new_modalities
💥 Testing DocArray Locally and on CI
Locally you can run the tests via:
poetry install --all-extras
poetry run pip install protobuf==3.19.0
poetry run pip install tensorflow
poetry run pytest -v -s tests
For local development we suggest using the following command to run the tests:
This only take a couple of seconds.
Test policy
Every contribution that adds or modifies the behavior of a feature must include a suite of tests that validates that the feature works as expected.
This allows:
- the reviewer to be very confident that the feature does what it is supposed to do before merging it into the code base.
- the contributors to be sure that they don't break already-merged features when refactoring or modifying the code base.
Enable logging
If you need to monitor and debug your code, you can enable docarray logging:
Compiling protobuf
Some changes to the code base require also changing the .proto
files that describe how DocArray serializes to and from
protobuf messages.
Changes to the .proto
definitions should be kept to a minimum, in order to avoid breaking changes.
If you do make modification in a .proto
file, you need to recompile the protobuf definitions.
In order to maintain compatibility with most of the Python ecosystem, in DocArray we compile to two different protobuf
versions. Therefore, compilation is a two-step process:
Step 1: Compile using protoc
version 3.19
- Download protoc v3.19 as appropriate for your system, e.g. from here
- Unzip the file and make
protoc
executable:chmod +x bin/protoc
- Compile the protobuf definitions in the
pb2
directory. Fromdocarray/proto/
runpath/to/v-3-19/bin/protoc -I . --python_out="pb2" docarray.proto
.
Step 2: Compile using protoc
version 3.21
- Download protoc v3.21 as appropriate for your system, e.g. from here
- Same as above
- Compile the protobuf definitions in the
pb
directory. Fromdocarray/proto/
runpath/to/v-3-21/bin/protoc -I . --python_out="pb" docarray.proto
.
📖 Contributing documentation
Good docs make developers happy, and we love happy developers! We've got a few different types of docs:
- General documentation
- Tutorials/examples
- Docstrings in Python functions in RST format - generated by Sphinx
Documentation guidelines
- Decide if your page is a user guide or a how-to, like in the
Data Types
section. Make sure it fits its section. - Use “you” instead of “we” or “I”. It engages the reader more.
- Sentence case for headers. (Use https://convertcase.net/ to check)
- Keep sentences short. If possible, fewer than 13 words.
- Only use
backticks
for direct references to code elements. - All acronyms should be UPPERCASE (Ex. YAML, JSON, HTTP, SSL).
- Think about the structure of the page beforehand. Split it into headers before writing the content.
- If relevant, include a “See also” section at the end.
- Link to any existing explanations of the concepts you are using.
- Example code in the documentation should also follow our code style.
- Know when to break the rules. Documentation writing is as much art as it is science. Sometimes you will have to deviate from these rules in order to write good documentation.
Building documentation on your local machine
Steps to build locally
First install the documentation dependency
Note: if you need to install extra (proto, database, ...) you need to specify those as well.
Then build the documentation:
The docs website will be generated in site
.
To serve it, run:
You can now see docs website on http://localhost:8000 on your browser. Note: You may have to change the port from 8000 to something else if you already have a server running on that port.
🙏 Thank you
Once again, thanks so much for your interest in contributing to DocArray. We're excited to see your contributions!