requirements.txt: bump to ruff v0.16; apply formatting changes
- ID
6b1a1dd- date
2026-07-26 20:40:59+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
6b1b41c- message
requirements.txt: bump to ruff v0.16; apply formatting changes- changed files
2 files, 5 additions, 9 deletions
Changed files
CHANGELOG.md (4830 → 4797)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 65e31e7..159ecdd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -64,8 +64,8 @@ This was only possible in cases where the fields of `A` were a strict subset of
For example, consider the following type:
```python
-BasicShape = typing.TypedDict("Shape", {"sides": int, })
-NamedShape = typing.TypedDict("Shape", {"sides": int, "colour": str, "name": str })
+BasicShape = typing.TypedDict("Shape", {"sides": int})
+NamedShape = typing.TypedDict("Shape", {"sides": int, "colour": str, "name": str})
Shape = BasicShape | NamedShape
```
@@ -124,11 +124,7 @@ This gives you more control over how the file is written -- for example, you can
```python
with open("shape.js", "x") as out_file:
- write_js(
- out_file,
- value={"sides": 5, "colour": "red"},
- varname="redPentagon"
- )
+ write_js(out_file, value={"sides": 5, "colour": "red"}, varname="redPentagon")
```
## v1.0.1 - 2024-08-26
dev_requirements.txt (846 → 880)
diff --git a/dev_requirements.txt b/dev_requirements.txt
index c115eac..2eca429 100644
--- a/dev_requirements.txt
+++ b/dev_requirements.txt
@@ -1,5 +1,5 @@
# This file was autogenerated by uv via the following command:
-# uv pip compile dev_requirements.in --output-file=dev_requirements.txt --exclude-newer=P7D --exclude-newer-package alexwlchan-chives=false
+# uv pip compile dev_requirements.in --output-file=dev_requirements.txt --exclude-newer=P7D --exclude-newer-package alexwlchan-chives=false --exclude-newer-package ruff=false
-e file:.
# via -r dev_requirements.in
annotated-types==0.7.0
@@ -20,7 +20,7 @@ pygments==2.20.0
# via pytest
pytest==9.0.3
# via -r dev_requirements.in
-ruff==0.15.10
+ruff==0.16.0
# via -r dev_requirements.in
ty==0.0.29
# via -r dev_requirements.in