web-cortex-framework 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/Cargo.lock +2 -2
  2. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/Cargo.toml +1 -1
  3. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/PKG-INFO +18 -8
  4. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/README.md +17 -7
  5. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/pyproject.toml +1 -1
  6. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/python/webcortex/__init__.py +1 -1
  7. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/LICENSE +0 -0
  8. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/Cargo.toml +0 -0
  9. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/agent/provider.rs +0 -0
  10. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/agent.rs +0 -0
  11. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/app.rs +0 -0
  12. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/audit.rs +0 -0
  13. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/auth.rs +0 -0
  14. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/bridge.rs +0 -0
  15. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/db.rs +0 -0
  16. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/files.rs +0 -0
  17. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/http.rs +0 -0
  18. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/lib.rs +0 -0
  19. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/manifest.rs +0 -0
  20. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/mcp.rs +0 -0
  21. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/middleware.rs +0 -0
  22. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/openapi.rs +0 -0
  23. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/router.rs +0 -0
  24. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/server.rs +0 -0
  25. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/templates.rs +0 -0
  26. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-core/src/typegen.rs +0 -0
  27. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-py/Cargo.toml +0 -0
  28. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-py/src/behaviour.rs +0 -0
  29. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/crates/webcortex-py/src/lib.rs +0 -0
  30. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/python/webcortex/_bridge.py +0 -0
  31. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/python/webcortex/app.py +0 -0
  32. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/python/webcortex/cli.py +0 -0
  33. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/python/webcortex/schema.py +0 -0
  34. {web_cortex_framework-0.3.0 → web_cortex_framework-0.3.1}/python/webcortex/starters.py +0 -0
@@ -2714,7 +2714,7 @@ dependencies = [
2714
2714
 
2715
2715
  [[package]]
2716
2716
  name = "webcortex-core"
2717
- version = "0.3.0"
2717
+ version = "0.3.1"
2718
2718
  dependencies = [
2719
2719
  "anyhow",
2720
2720
  "async-stream",
@@ -2745,7 +2745,7 @@ dependencies = [
2745
2745
 
2746
2746
  [[package]]
2747
2747
  name = "webcortex-py"
2748
- version = "0.3.0"
2748
+ version = "0.3.1"
2749
2749
  dependencies = [
2750
2750
  "bytes",
2751
2751
  "futures",
@@ -3,7 +3,7 @@ members = ["crates/webcortex-core", "crates/webcortex-py"]
3
3
  resolver = "3"
4
4
 
5
5
  [workspace.package]
6
- version = "0.3.0"
6
+ version = "0.3.1"
7
7
  edition = "2024"
8
8
  license = "Apache-2.0"
9
9
  rust-version = "1.85"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: web-cortex-framework
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: Apache Software License
@@ -29,9 +29,16 @@ Project-URL: Security, https://github.com/slimboi34/web_cortex_framework/blob/ma
29
29
 
30
30
  # WebCortex
31
31
 
32
- > **Status: pre-release.** Not yet published; build from source. Once released it
33
- > installs as **`web-cortex-framework`** and imports as **`webcortex`** — the same
32
+ ```bash
33
+ pip install web-cortex-framework
34
+ ```
35
+
36
+ > Installs as **`web-cortex-framework`**, imports as **`webcortex`** — the same
34
37
  > split as `djangorestframework` → `import rest_framework`.
38
+ >
39
+ > **Python 3.12, 3.13, and free-threaded 3.14 (`3.14t`).** GIL-enabled 3.14 is
40
+ > not supported and no wheel is published for it — see
41
+ > [Known issue](#known-issue-cpython-3147-with-the-gil-enabled) below.
35
42
 
36
43
  **📖 [Documentation](https://slimboi34.github.io/web_cortex_framework/)** ·
37
44
  [Tutorial](https://slimboi34.github.io/web_cortex_framework/tutorial/) ·
@@ -83,9 +90,8 @@ headers. No second file, no schema written twice, no drift.
83
90
  ## Start here
84
91
 
85
92
  ```bash
86
- # Not yet on PyPIsee Status below. For now, build from source:
87
- git clone https://github.com/slimboi34/web_cortex_framework && cd webcortex
88
- uv venv --python 3.14 && uv pip install maturin && maturin develop --uv
93
+ # 3.13, or the free-threaded 3.14t not GIL-enabled 3.14. See Known issue.
94
+ uv venv --python 3.13 && uv pip install web-cortex-framework
89
95
 
90
96
  webcortex new myapp # --template api | fullstack | agent | behaviour
91
97
  cd myapp
@@ -350,8 +356,12 @@ unaffected. 3.14.7 was released on 5 August 2026; the failure began the same day
350
356
 
351
357
  This is not a version-resolution accident on your machine — `uv` resolves `3.14`
352
358
  to the newest patch build available when it runs, so an environment that worked
353
- yesterday can stop working today without anything in your project changing. Pin
354
- to 3.13, or use the free-threaded 3.14 build, until this is resolved.
359
+ yesterday can stop working today without anything in your project changing.
360
+
361
+ **No cp314 wheel is published**, and the CI matrix does not test that target.
362
+ Shipping a binary that installs cleanly and then fails at import is worse than
363
+ shipping none: the error arrives later, further from its cause, and looks like
364
+ a bug in your own application. Use 3.13 or `3.14t`.
355
365
 
356
366
  The investigation so far, including what has been ruled out, is in
357
367
  [AGENTS.md §11](AGENTS.md#11-known-issue-cpython-3147-with-the-gil-enabled).
@@ -1,8 +1,15 @@
1
1
  # WebCortex
2
2
 
3
- > **Status: pre-release.** Not yet published; build from source. Once released it
4
- > installs as **`web-cortex-framework`** and imports as **`webcortex`** — the same
3
+ ```bash
4
+ pip install web-cortex-framework
5
+ ```
6
+
7
+ > Installs as **`web-cortex-framework`**, imports as **`webcortex`** — the same
5
8
  > split as `djangorestframework` → `import rest_framework`.
9
+ >
10
+ > **Python 3.12, 3.13, and free-threaded 3.14 (`3.14t`).** GIL-enabled 3.14 is
11
+ > not supported and no wheel is published for it — see
12
+ > [Known issue](#known-issue-cpython-3147-with-the-gil-enabled) below.
6
13
 
7
14
  **📖 [Documentation](https://slimboi34.github.io/web_cortex_framework/)** ·
8
15
  [Tutorial](https://slimboi34.github.io/web_cortex_framework/tutorial/) ·
@@ -54,9 +61,8 @@ headers. No second file, no schema written twice, no drift.
54
61
  ## Start here
55
62
 
56
63
  ```bash
57
- # Not yet on PyPIsee Status below. For now, build from source:
58
- git clone https://github.com/slimboi34/web_cortex_framework && cd webcortex
59
- uv venv --python 3.14 && uv pip install maturin && maturin develop --uv
64
+ # 3.13, or the free-threaded 3.14t not GIL-enabled 3.14. See Known issue.
65
+ uv venv --python 3.13 && uv pip install web-cortex-framework
60
66
 
61
67
  webcortex new myapp # --template api | fullstack | agent | behaviour
62
68
  cd myapp
@@ -321,8 +327,12 @@ unaffected. 3.14.7 was released on 5 August 2026; the failure began the same day
321
327
 
322
328
  This is not a version-resolution accident on your machine — `uv` resolves `3.14`
323
329
  to the newest patch build available when it runs, so an environment that worked
324
- yesterday can stop working today without anything in your project changing. Pin
325
- to 3.13, or use the free-threaded 3.14 build, until this is resolved.
330
+ yesterday can stop working today without anything in your project changing.
331
+
332
+ **No cp314 wheel is published**, and the CI matrix does not test that target.
333
+ Shipping a binary that installs cleanly and then fails at import is worse than
334
+ shipping none: the error arrives later, further from its cause, and looks like
335
+ a bug in your own application. Use 3.13 or `3.14t`.
326
336
 
327
337
  The investigation so far, including what has been ruled out, is in
328
338
  [AGENTS.md §11](AGENTS.md#11-known-issue-cpython-3147-with-the-gil-enabled).
@@ -7,7 +7,7 @@ build-backend = "maturin"
7
7
  # Both are available on PyPI — the split is for ergonomics, not necessity, the
8
8
  # same way djangorestframework imports as `rest_framework`.
9
9
  name = "web-cortex-framework"
10
- version = "0.3.0"
10
+ version = "0.3.1"
11
11
  description = "A Rust-cored Python web framework where every route is also an agent tool."
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.12"
@@ -17,7 +17,7 @@ server exposing six tools — from nine lines.
17
17
  from ._bridge import HTTPError, Request, Response, free_threaded
18
18
  from .app import WebCortex, Resource
19
19
 
20
- __version__ = "0.3.0"
20
+ __version__ = "0.3.1"
21
21
 
22
22
  __all__ = [
23
23
  "WebCortex",