Skip to content

Commit 499a772

Browse files
dycwweb-flow
andauthored
Add yield-git-repos (#806)
Co-authored-by: github-actions-bot <noreply@github.com>
1 parent 287ac75 commit 499a772

File tree

7 files changed

+41
-2098
lines changed

7 files changed

+41
-2098
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ repos:
122122
- id: trailing-whitespace
123123
priority: 20
124124
- repo: https://github.com/astral-sh/ruff-pre-commit
125-
rev: v0.15.0
125+
rev: v0.15.1
126126
hooks:
127127
- id: ruff-check
128128
args:

fish/config.fish

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,17 @@ function ghostty-config
274274
$EDITOR $HOME/dotfiles/ghostty/config
275275
end
276276

277+
# git
278+
function yield-git-repos
279+
set -l dir $argv[-1]
280+
for dir in */
281+
if test -d "$dir/.git"
282+
set abs (realpath "$dir")
283+
echo $abs
284+
end
285+
end
286+
end
287+
277288
# hypothesis
278289
function hypothesis-ci
279290
export HYPOTHESIS_PROFILE=ci

nvim/lazy-lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"inc-rename.nvim": {
6363
"branch": "main",
64-
"commit": "2597bccb57d1b570fbdbd4adf88b955f7ade715b"
64+
"commit": "a2f4b564c72ea1f22cba2caa97db603618d16d6f"
6565
},
6666
"indent-blankline.nvim": {
6767
"branch": "master",
@@ -137,7 +137,7 @@
137137
},
138138
"nvim-tree.lua": {
139139
"branch": "master",
140-
"commit": "1df1960d0e3a26643a4100f64fa03b991b9f4b85"
140+
"commit": "516f95e8efec035d344114c591e56b7fb2d4c0dc"
141141
},
142142
"nvim-treesitter": {
143143
"branch": "master",

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"cachetools>=7.0.1",
1515
"cvxpy>=1.8.1",
1616
"dacite>=1.9.2",
17-
"dycw-utilities[test]>=0.191.0",
17+
"dycw-utilities[test]>=0.191.1",
1818
"frozendict>=2.4.7",
1919
"holoviews>=1.22.1",
2020
"humanize>=4.15.0",
2121
"hvplot>=0.12.2",
22-
"hypothesis>=6.151.5",
22+
"hypothesis>=6.151.6",
2323
"ib-async>=2.1.0",
2424
"inflect>=7.5.0",
2525
"joblib>=1.5.3",
@@ -52,12 +52,12 @@
5252

5353
[project]
5454
authors = [{ email = "d.wan@icloud.com", name = "Derek Wan" }]
55-
dependencies = ["click>=8.3.1", "dycw-utilities>=0.191.0", "libcst>=1.8.6"]
55+
dependencies = ["click>=8.3.1", "dycw-utilities>=0.191.1", "libcst>=1.8.6"]
5656
description = "Dotfiles"
5757
name = "dycw-dotfiles"
5858
readme = "README.md"
5959
requires-python = ">= 3.12"
60-
version = "0.4.22"
60+
version = "0.4.23"
6161

6262
[project.scripts]
6363
dotfiles-cli = "dotfiles._cli:cli"

src/dotfiles/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.4.22"
3+
__version__ = "0.4.23"

uv.lock

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

0 commit comments

Comments
 (0)