Skip to content

Commit 34c4bdd

Browse files
committed
commit after failed push
1 parent 83de1f9 commit 34c4bdd

5 files changed

Lines changed: 34 additions & 8 deletions

File tree

.githooks/pre-push-python/extras.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ check_extras_changes() {
1111
local changed_files=$(git status --porcelain "$target_path" || true)
1212

1313
if [ -n "$changed_files" ]; then
14-
echo " ERROR: Generated extras are not up-to-date:"
14+
echo " ERROR: Generated extras are not up-to-date:"
1515
echo "$changed_files" | sed 's/^/ /'
1616
echo " Please commit these changes before pushing."
1717
exit 1

.githooks/pre-push-python/fmt-lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ changed_files=$(git status --porcelain python/lib/sift_client/ | grep -E '\.py$'
2323

2424
if [ -n "$changed_files" ]; then
2525
echo ""
26-
echo " ERROR: Formatting/linting made changes:"
26+
echo " ERROR: Formatting/linting made changes:"
2727
echo "$changed_files" | sed 's/^/ /'
2828
echo ""
2929
echo " Please commit these changes before pushing."

.githooks/pre-push-python/stubs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ check_stub_changes() {
1111
local changed_files=$(git status --porcelain "$target_path" | grep -E '\.pyi$' || true)
1212

1313
if [ -n "$changed_files" ]; then
14-
echo " ERROR: Generated stubs are not up-to-date:"
14+
echo " ERROR: Generated stubs are not up-to-date:"
1515
echo "$changed_files" | sed 's/^/ /'
1616
echo " Please commit these changes before pushing."
1717
exit 1

.githooks/pre-push-rust/stubs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ check_stub_changes() {
1010
local changed_files=$(git status --porcelain "$target_path" | grep -E '\.pyi$' || true)
1111

1212
if [ -n "$changed_files" ]; then
13-
echo " ERROR: Generated stubs are not up-to-date:"
13+
echo " ERROR: Generated stubs are not up-to-date:"
1414
echo "$changed_files" | sed 's/^/ /'
1515
echo " Please commit these changes before pushing."
1616
exit 1

python/pyproject.toml

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,36 @@ development = [
117117
'ruff~=0.12.10',
118118
'tomlkit~=0.13.3',
119119
]
120-
121-
122-
123-
120+
docs = [
121+
'griffe-pydantic',
122+
'mike',
123+
'mkdocs',
124+
'mkdocs-api-autonav',
125+
'mkdocs-include-markdown-plugin',
126+
'mkdocs-jupyter',
127+
'mkdocs-material',
128+
'mkdocstrings[python]',
129+
]
130+
docs-build = [
131+
'griffe-pydantic',
132+
'grpcio-testing~=1.13',
133+
'mike',
134+
'mkdocs',
135+
'mkdocs-api-autonav',
136+
'mkdocs-include-markdown-plugin',
137+
'mkdocs-jupyter',
138+
'mkdocs-material',
139+
'mkdocstrings[python]',
140+
'mypy==1.10.0',
141+
'pyright==1.1.386',
142+
'pytest-asyncio==0.23.7',
143+
'pytest-benchmark==4.0.0',
144+
'pytest-dotenv==0.5.2',
145+
'pytest-mock==3.14.0',
146+
'pytest==8.2.2',
147+
'ruff~=0.12.10',
148+
'tomlkit~=0.13.3',
149+
]
124150
file-imports = [
125151
'h5py~=3.11',
126152
'npTDMS~=1.9',

0 commit comments

Comments
 (0)