Skip to content

Commit 2cfdf1d

Browse files
committed
Merge branch 'main' into recursive-inference
2 parents c9cc000 + 28aed61 commit 2cfdf1d

File tree

1,888 files changed

+62843
-26074
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,888 files changed

+62843
-26074
lines changed

.cargo/config.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,3 @@ benchmark = "bench -p ruff_benchmark --bench linter --bench formatter --"
88
# See: https://github.com/astral-sh/ruff/issues/11503
99
[target.'cfg(all(target_env="msvc", target_os = "windows"))']
1010
rustflags = ["-C", "target-feature=+crt-static"]
11-
12-
[target.'wasm32-unknown-unknown']
13-
# See https://docs.rs/getrandom/latest/getrandom/#webassembly-support
14-
rustflags = ["--cfg", 'getrandom_backend="wasm_js"']

.config/nextest.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Define serial test group for running tests sequentially.
2+
[test-groups]
3+
serial = { max-threads = 1 }
4+
5+
# Run ty file watching tests sequentially to avoid race conditions.
6+
[[profile.default.overrides]]
7+
filter = 'binary(file_watching)'
8+
test-group = 'serial'
9+
110
[profile.ci]
211
# Print out output for failing tests as soon as they fail, and also at the end
312
# of the run (for easy scrollability).

.editorconfig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@ indent_style = space
1010
insert_final_newline = true
1111
indent_size = 2
1212

13-
[*.{rs,py,pyi}]
13+
[*.{rs,py,pyi,toml}]
1414
indent_size = 4
1515

1616
[*.snap]
1717
trim_trailing_whitespace = false
1818

1919
[*.md]
2020
max_line_length = 100
21-
22-
[*.toml]
23-
indent_size = 4

.github/workflows/build-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
4242

43-
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
43+
- uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
4444
with:
4545
registry: ghcr.io
4646
username: ${{ github.repository_owner }}
@@ -131,7 +131,7 @@ jobs:
131131
type=pep440,pattern={{ version }},value=${{ fromJson(inputs.plan).announcement_tag }}
132132
type=pep440,pattern={{ major }}.{{ minor }},value=${{ fromJson(inputs.plan).announcement_tag }}
133133
134-
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
134+
- uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
135135
with:
136136
registry: ghcr.io
137137
username: ${{ github.repository_owner }}
@@ -169,7 +169,7 @@ jobs:
169169
steps:
170170
- uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
171171

172-
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
172+
- uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
173173
with:
174174
registry: ghcr.io
175175
username: ${{ github.repository_owner }}
@@ -276,7 +276,7 @@ jobs:
276276
type=pep440,pattern={{ version }},value=${{ fromJson(inputs.plan).announcement_tag }}
277277
type=pep440,pattern={{ major }}.{{ minor }},value=${{ fromJson(inputs.plan).announcement_tag }}
278278
279-
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
279+
- uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
280280
with:
281281
registry: ghcr.io
282282
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)