-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation for v3.0 release (#284)
Update the docs and bring back the docs publishing workflow step.
- Loading branch information
Showing
12 changed files
with
814 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'Merge to main' | ||
name: 'CI (main)' | ||
|
||
on: | ||
push: | ||
|
@@ -18,15 +18,15 @@ jobs: | |
with: | ||
python-version: 3.11 | ||
|
||
# - name: Push documentation artifacts to sdk-docs | ||
# uses: cpina/github-action-push-to-another-repository@main | ||
# env: | ||
# SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | ||
# with: | ||
# source-directory: docs | ||
# destination-github-username: pinecone-io | ||
# destination-repository-name: sdk-docs | ||
# user-email: [email protected] | ||
# target-branch: main | ||
# target-directory: python | ||
# commit-message: 'Python: automated documentation build - pinecone-python-client merge SHA: ${{ github.sha }}' | ||
- name: Push documentation artifacts to sdk-docs | ||
uses: cpina/github-action-push-to-another-repository@main | ||
env: | ||
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | ||
with: | ||
source-directory: docs | ||
destination-github-username: pinecone-io | ||
destination-repository-name: sdk-docs | ||
user-email: [email protected] | ||
target-branch: main | ||
target-directory: python | ||
commit-message: 'Python: automated documentation build - pinecone-python-client merge SHA: ${{ github.sha }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
# Contributing | ||
|
||
## Installing development versions | ||
|
||
If you want to explore a potential code change, investigate | ||
a bug, or just want to try unreleased features, you can also install | ||
specific git shas. | ||
|
||
Some example commands: | ||
|
||
```shell | ||
pip3 install git+https://[email protected]/pinecone-io/pinecone-python-client.git | ||
pip3 install git+https://[email protected]/pinecone-io/pinecone-python-client.git@example-branch-name | ||
pip3 install git+https://[email protected]/pinecone-io/pinecone-python-client.git@44fc7ed | ||
|
||
poetry add git+https://github.com/pinecone-io/pinecone-python-client.git@44fc7ed | ||
``` | ||
|
||
|
||
## Developing locally with Poetry | ||
|
||
[Poetry](https://python-poetry.org/) is a tool that combines [virtualenv](https://virtualenv.pypa.io/en/latest/) usage with dependency management, to provide a consistent experience for project maintainers and contributors who need to develop the pinecone-python-client | ||
|
Oops, something went wrong.