Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ repos:
rev: v2.9.0
hooks:
- id: pip-audit
args: [--format=json]
# Temporary workaround: ignoring pip vulnerability GHSA-4xh5-x5gv-qwph (pip 25.2).
# Remove this ignore once a patched version of pip is available.
args: [--format=json, --ignore-vuln=GHSA-4xh5-x5gv-qwph]

# Local hooks for project-specific tasks
- repo: local
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ install:
fi
uv sync
uv pip install -e .
@echo "✅ Installation complete!"
@echo "💡 To activate the virtual environment, run: source .venv/bin/activate"
@echo " Or use 'uv run workato' to run commands without activation"

install-dev:
@if [ ! -d ".venv" ]; then \
Expand Down
12 changes: 1 addition & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,7 @@ pip install workato-platform-cli
```bash
git clone https://github.com/workato-devs/workato-platform-cli.git
cd workato-platform-cli
pip install -e .
```

### Alternative (if above fails)
If you get an "externally-managed-environment" error:

```bash
# Virtual environment (recommended)
python3 -m venv venv
source venv/bin/activate # Linux/Mac
pip install -e .
make install
```

Having issues? See [DEVELOPER_GUIDE.md](/docs/DEVELOPER_GUIDE.md) for troubleshooting.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies = [
"certifi>=2025.8.3",
"keyring>=25.6.0",
"ruff==0.13.0",
"urllib3>=2.5.0",
]

[project.optional-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.