Skip to content

Commit

Permalink
Prep for next release: add empty CHANGELOG.md and update .gitignore t…
Browse files Browse the repository at this point in the history
…o ignore .idea files

Signed-off-by: Sid Murching <[email protected]>
  • Loading branch information
smurching committed Nov 12, 2024
1 parent 46dfc5b commit b8596f1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 24 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ __pycache__

# Editor files
*.vscode
.idea

# Mac
.DS_Store
Expand Down
Empty file added CHANGELOG.md
Empty file.
25 changes: 1 addition & 24 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Setting up dev environment

Create a conda environement and install dev requirements
Create a conda environment and install dev requirements

```sh
conda create --name databricks-ai-dev-env python=3.10
Expand All @@ -16,26 +16,3 @@ If you are working with integration packages install them as well
```sh
pip install -e "integrations/langchain[dev]"
```

## Publishing to PyPI

Note: this section is for maitainers only.

We recommend first uploading to test-PyPI

### Publishing core package


```sh
pip install build
python3 -m build --wheel
twine upload dist/*
```

### Publishing integration packages

```sh
cd integrations/langchain
python3 -m build --wheel
twine upload dist/*
```

0 comments on commit b8596f1

Please sign in to comment.