Skip to content

Commit 5ea4469

Browse files
Bump pypdf from 6.1.1 to 6.1.3 in the pip group across 1 directory (#1332)
* Bump pypdf from 6.1.1 to 6.1.3 in the pip group across 1 directory Bumps the pip group with 1 update in the / directory: [pypdf](https://github.com/py-pdf/pypdf). Updates `pypdf` from 6.1.1 to 6.1.3 - [Release notes](https://github.com/py-pdf/pypdf/releases) - [Changelog](https://github.com/py-pdf/pypdf/blob/main/CHANGELOG.md) - [Commits](py-pdf/pypdf@6.1.1...6.1.3) --- updated-dependencies: - dependency-name: pypdf dependency-version: 6.1.3 dependency-type: indirect dependency-group: pip ... Signed-off-by: dependabot[bot] <[email protected]> * Update poetry.lock * Update poetry.lock * Update poetry.lock * Update poetry.lock * Update poetry.lock * fix lock file * Update poetry.lock * Update poetry.lock * Update poetry.lock * Update poetry.lock * Update poetry.lock * regen poetry lock * revert poetry lock * update only pypdf * Py 39 fix (#1335) * fix lock file for python 3.9 * update ci * cleanup ci --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Caleb Courier <[email protected]> Co-authored-by: Caleb Courier <[email protected]>
1 parent d54b218 commit 5ea4469

File tree

4 files changed

+1021
-102
lines changed

4 files changed

+1021
-102
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,7 @@ jobs:
3737
# Setup Virtual Environment
3838
python3 -m venv ./.venv
3939
source .venv/bin/activate
40-
41-
if [ "${{ matrix.python-version }}" == "3.9" ];
42-
then
43-
pip install .[dev]
44-
else
45-
poetry install --extras dev
46-
fi
40+
make dev
4741
4842
- name: Check license
4943
run: |
@@ -70,12 +64,7 @@ jobs:
7064
# Setup Virtual Environment
7165
python3 -m venv ./.venv
7266
source .venv/bin/activate
73-
if [ "${{ matrix.python-version }}" == "3.9" ];
74-
then
75-
pip install .[dev]
76-
else
77-
make dev
78-
fi
67+
make dev
7968
8069
- name: Lint with ruff
8170
run: |
@@ -102,12 +91,7 @@ jobs:
10291
# Setup Virtual Environment
10392
python3 -m venv ./.venv
10493
source .venv/bin/activate
105-
if [ "${{ matrix.python-version }}" == "3.9" ];
106-
then
107-
pip install .[dev,sql,vectordb,manifest,anthropic,huggingface,api,databricks,uv,llama]
108-
else
109-
make full
110-
fi
94+
make full
11195
11296
- name: Static analysis with pyright
11397
run: |
@@ -144,12 +128,7 @@ jobs:
144128
python3 -m venv ./.venv
145129
source .venv/bin/activate
146130
147-
if [ "${{ matrix.python-version }}" == "3.9" ];
148-
then
149-
pip install .[dev,sql,vectordb,manifest,anthropic,huggingface,api,databricks,uv,llama]
150-
else
151-
make full
152-
fi
131+
make full
153132
154133
if [ "${{ matrix.python-version }}" == "3.12" ]; then
155134
echo "Installing latest langchain-core and langsmith from PyPI"

.github/workflows/cli-compatibility.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,7 @@ jobs:
4040
source .venv/bin/activate
4141
4242
# Install dev dependencies
43-
if [ "${{ matrix.python-version }}" == "3.9" ]; then
44-
pip install .[dev]
45-
else
46-
poetry install --extras dev
47-
fi
43+
poetry install --extras dev
4844
4945
# Install specific typer and click versions
5046
pip install typer==${{ matrix.typer-version }} click==${{ matrix.click-version }}

0 commit comments

Comments
 (0)