Skip to content

Commit 1e1eb1c

Browse files
coderberryclaude
andcommitted
Fix pyproject.toml syntax error and installation method in CI
- Fixed syntax error in pyproject.toml (invalid include pattern) - Changed package installation from editable mode (-e) to regular installation in GitHub Actions - This should resolve the dependency installation errors in CI 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent c003cc1 commit 1e1eb1c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
python -m pip install -e .[dev]
23+
python -m pip install .[dev]
2424
2525
- name: Lint with flake8
2626
run: |

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
python -m pip install -e .[dev]
27+
python -m pip install .[dev]
2828
2929
- name: Run tests with pytest
3030
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[tool.black]
66
line-length = 88
77
target-version = ['py37']
8-
include = '\.pyi?$'$'
8+
include = '\.pyi?$'
99

1010
[tool.isort]
1111
profile = "black"

0 commit comments

Comments
 (0)