Skip to content

Commit c9e1291

Browse files
author
codegen-bot
committed
remove skip condition
1 parent 21fd2f6 commit c9e1291

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/actions/setup/action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ runs:
66
steps:
77

88
- name: Install UV
9-
if: ${{ steps.skip-workflow.outputs.skip == 'false' }}
109
uses: astral-sh/setup-uv@v5
1110
id: setup-uv
1211
with:
@@ -16,7 +15,6 @@ runs:
1615
cache-dependency-glob: '**/uv.lock'
1716

1817
- name: Install dependencies
19-
if: ${{ steps.skip-workflow.outputs.skip == 'false' }}
2018
shell: bash
2119
run: |
2220
uv sync --frozen

.pre-commit-config.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,8 @@ repos:
5656
- id: deptry
5757
pass_filenames: false
5858
always_run: true
59-
entry: bash -c "uv run --frozen --all-extras --dev deptry src --ignore DEP001"
60-
- repo: "local"
61-
hooks:
62-
- id: disallowed-words-check
63-
name: Check for disallowed words
64-
entry: scripts/disallowed-words-check.sh
65-
language: script
66-
files: '' # Check all files
59+
entry: bash -c "uv run --frozen --all-extras --dev deptry . --ignore DEP001"
60+
6761
- repo: https://github.com/renovatebot/pre-commit-hooks
6862
rev: 39.120.4
6963
hooks:

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ readme = "README.md"
55
requires-python = ">=3.12, <3.14"
66
dependencies = [
77
"codegen==0.5.3",
8-
"jupyterlab==4.3.4",
98
]
109
license = {file = "LICENSE"}
1110
classifiers = [
@@ -29,9 +28,13 @@ dev-dependencies = [
2928
"pre-commit>=4.0.1",
3029
"pre-commit-uv>=4.1.4",
3130
"uv>=0.4.25",
31+
"jupyterlab==4.3.4",
3232
]
3333

3434
[tool.pre-commit-uv]
3535
requirements = [
3636
"strict-requirements",
3737
]
38+
39+
[tool.deptry]
40+
package_module_name_map.codegen = "codegen"

0 commit comments

Comments
 (0)