Skip to content

Commit fad7289

Browse files
authored
Merge branch 'master' into patch-1
2 parents 3f35bee + 0bf9522 commit fad7289

6 files changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
enable-cache: true
2525

2626
- name: Install dependencies
27-
run: uv sync --group build
27+
run: uv sync --group build --locked
2828

2929
- name: Run tests
3030
run: make test

.github/workflows/deploy-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
enable-cache: true
3232

3333
- name: Install dependencies
34-
run: uv sync --group build
34+
run: uv sync --group build --locked
3535

3636
- name: Run tests
3737
if: github.event_name == 'schedule'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
export
33

44
install:
5-
uv sync
5+
uv sync --locked
66

77
fetch_github_stars:
88
uv run python website/fetch_github_stars.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ _Libraries for building AI applications, LLM integrations, and autonomous agents
132132
- Agent Skills
133133
- [django-ai-plugins](https://github.com/vintasoftware/django-ai-plugins) - Django backend agent skills for Django, DRF, Celery, and Django-specific code review.
134134
- [sentry-skills](https://github.com/getsentry/skills) - Python-focused engineering skills for code review, debugging, and backend workflows.
135-
- [trailofbits-skills](https://github.com/trailofbits/skills) - Python-friendly security skills for auditing, testing, and safer backend development.
135+
- [trailofbits-skills](https://github.com/trailofbits/skills) - Python-friendly security skills for auditing, testing, and safer backend development. Also [skills-curated](https://github.com/trailofbits/skills-curated).
136136
- Orchestration
137137
- [autogen](https://github.com/microsoft/autogen) - A programming framework for building agentic AI applications.
138138
- [bub](https://github.com/bubbuild/bub) - A lightweight, hook-first Python framework for channel-native agents that live alongside people.

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,10 @@ pythonpath = ["website"]
2929

3030
[tool.ruff]
3131
line-length = 200
32+
33+
[tool.uv]
34+
exclude-newer = "3 days"
35+
no-build = true
36+
37+
[tool.uv.pip]
38+
only-binary = [":all:"]

uv.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)