Create a conda environement and install dev requirements
conda create --name databricks-ai-dev-env python=3.10
conda activate databricks-ai-dev-env
pip install -e ".[dev]"
pip install -r requirements/lint-requirements.txt
If you are working with integration packages install them as well
pip install -e "integrations/langchain[dev]"
Note: this section is for maitainers only.
We recommend first uploading to test-PyPI
pip install build
python3 -m build --wheel
twine upload dist/*
cd integrations/langchain
python3 -m build --wheel
twine upload dist/*