Skip to content

Commit 909ccb0

Browse files
ofekmanzt
authored andcommitted
Add 3.14 to CI (jcrist#888)
1 parent f1ab8fa commit 909ccb0

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ on:
55
branches: [main]
66
pull_request:
77
branches: [main]
8-
paths-ignore:
9-
- "docs/**"
10-
- "benchmarks/**"
11-
- "examples/**"
12-
- ".github/**"
13-
- "README.rst"
8+
paths:
9+
- "msgspec/**"
10+
- ".github/workflows/ci.yml"
11+
- ".pre-commit-config.yaml"
12+
- "pyproject.toml"
13+
- "setup.py"
14+
- "setup.cfg"
1415
release:
1516
types: [published]
1617
workflow_dispatch:
@@ -22,7 +23,7 @@ on:
2223

2324
jobs:
2425
lint:
25-
name: Lint and ruff code
26+
name: Run static analysis
2627
runs-on: ubuntu-latest
2728

2829
steps:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
error = """
1616
====================================================================
1717
`msgspec` currently doesn't support 32-bit Python windows builds. If
18-
this is important for your use case, please open an issue on GitHub:
18+
this is important for your use case, please comment on this issue:
1919
20-
https://github.com/jcrist/msgspec/issues
20+
https://github.com/jcrist/msgspec/issues/845
2121
====================================================================
2222
"""
2323
print(textwrap.dedent(error))

tests/test_common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2124,6 +2124,7 @@ def test_broken_typeddict(self, proto, use_typing_extensions):
21242124

21252125
class Ex(cls, total=False):
21262126
c: str
2127+
21272128
Ex.__annotations__ = {"c": "str"}
21282129
Ex.__required_keys__ = {"a", "b"}
21292130

0 commit comments

Comments
 (0)