change duckduck-go version
Browse files- .github/workflows/bumpver.yml +0 -40
- bumpver.toml +0 -18
- requirements.txt +1 -1
.github/workflows/bumpver.yml
DELETED
|
@@ -1,40 +0,0 @@
|
|
| 1 |
-
name: Bump Version
|
| 2 |
-
|
| 3 |
-
on:
|
| 4 |
-
workflow_dispatch:
|
| 5 |
-
inputs:
|
| 6 |
-
bump:
|
| 7 |
-
type: choice
|
| 8 |
-
description: "Bump major, minor, or patch version"
|
| 9 |
-
required: true
|
| 10 |
-
default: "patch"
|
| 11 |
-
options:
|
| 12 |
-
- "major"
|
| 13 |
-
- "minor"
|
| 14 |
-
- "patch"
|
| 15 |
-
|
| 16 |
-
jobs:
|
| 17 |
-
bump-version:
|
| 18 |
-
runs-on: ubuntu-latest
|
| 19 |
-
permissions:
|
| 20 |
-
contents: write
|
| 21 |
-
steps:
|
| 22 |
-
- name: Checkout code
|
| 23 |
-
uses: actions/checkout@v4
|
| 24 |
-
with:
|
| 25 |
-
token: ${{ secrets.GITHUB_TOKEN }}
|
| 26 |
-
fetch-depth: 0
|
| 27 |
-
- name: Set up Python
|
| 28 |
-
uses: actions/setup-python@v4
|
| 29 |
-
with:
|
| 30 |
-
python-version: 3.11
|
| 31 |
-
cache: pip
|
| 32 |
-
- name: Install Python libraries
|
| 33 |
-
run: |
|
| 34 |
-
pip install --user bumpver
|
| 35 |
-
- name: git config
|
| 36 |
-
run: |
|
| 37 |
-
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
| 38 |
-
git config --local user.name "github-actions[bot]"
|
| 39 |
-
- name: Bump version
|
| 40 |
-
run: bumpver update --commit --tag-commit --${{ github.event.inputs.bump }} --push
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bumpver.toml
DELETED
|
@@ -1,18 +0,0 @@
|
|
| 1 |
-
[bumpver]
|
| 2 |
-
current_version = "2.1.4"
|
| 3 |
-
version_pattern = "MAJOR.MINOR.PATCH"
|
| 4 |
-
commit_message = "bump version {old_version} -> {new_version}"
|
| 5 |
-
tag_message = "{new_version}"
|
| 6 |
-
tag_scope = "default"
|
| 7 |
-
pre_commit_hook = ""
|
| 8 |
-
post_commit_hook = ""
|
| 9 |
-
commit = true
|
| 10 |
-
tag = true
|
| 11 |
-
push = true
|
| 12 |
-
|
| 13 |
-
[bumpver.file_patterns]
|
| 14 |
-
"bumpver.toml" = [
|
| 15 |
-
'current_version = "{version}"',
|
| 16 |
-
]
|
| 17 |
-
"langchain-streamlit-demo/app.py" = ['__version__ = "{version}"']
|
| 18 |
-
"kubernetes/resources.yaml" = [' image: joshuasundance/langchain-streamlit-demo:{version}']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
CHANGED
|
@@ -2,7 +2,7 @@ anthropic==0.12.0
|
|
| 2 |
beautifulsoup4==4.12.3
|
| 3 |
black==24.1.1
|
| 4 |
certifi>=2023.7.22 # not directly required, pinned by Snyk to avoid a vulnerability
|
| 5 |
-
duckduckgo-search==4.3.
|
| 6 |
faiss-cpu==1.7.4
|
| 7 |
langchain==0.1.4
|
| 8 |
langsmith==0.0.84
|
|
|
|
| 2 |
beautifulsoup4==4.12.3
|
| 3 |
black==24.1.1
|
| 4 |
certifi>=2023.7.22 # not directly required, pinned by Snyk to avoid a vulnerability
|
| 5 |
+
duckduckgo-search==4.3.1
|
| 6 |
faiss-cpu==1.7.4
|
| 7 |
langchain==0.1.4
|
| 8 |
langsmith==0.0.84
|