Skip to content

Commit aeb7fbf

Browse files
committed
Merge remote-tracking branch 'origin/main' into masenf/socket-dev-scan
2 parents 9cf3995 + 1110287 commit aeb7fbf

385 files changed

Lines changed: 1328 additions & 1328 deletions

File tree

Some content is hidden

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

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454
- name: Verify .pyi files in wheel
5555
if: steps.parse.outputs.package == 'reflex'
5656
run: |
57-
if unzip -l dist/*.whl | grep '\.pyi$'; then
57+
if unzip -l ${{ steps.parse.outputs.build_dir }}/dist/*.whl | grep '\.pyi$'; then
5858
echo "✓ .pyi files found in distribution"
5959
else
6060
echo "Error: No .pyi files found in wheel"
6161
exit 1
6262
fi
6363
6464
- name: Publish
65-
run: uv publish --directory "${{ steps.parse.outputs.build_dir }}"
65+
run: uv publish dist/*

packages/hatch-reflex-pyi/src/hatch_reflex_pyi/plugin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ def initialize(self, version: str, build_data: dict[str, Any]) -> None:
5555
return
5656

5757
try:
58-
from reflex_core.utils.pyi_generator import PyiGenerator # noqa: F401
58+
from reflex_base.utils.pyi_generator import PyiGenerator # noqa: F401
5959
except ImportError:
60-
# reflex-core is not installed — skip pyi generation.
60+
# reflex-base is not installed — skip pyi generation.
6161
# Pre-generated .pyi files in the sdist will be used.
6262
return
6363

@@ -68,7 +68,7 @@ def initialize(self, version: str, build_data: dict[str, Any]) -> None:
6868
# (e.g. "reflex_components_core.core.banner" instead of
6969
# "packages.reflex-components-core.src.reflex_components_core.core.banner").
7070
subprocess.run(
71-
[sys.executable, "-m", "reflex_core.utils.pyi_generator", src_dir.name],
71+
[sys.executable, "-m", "reflex_base.utils.pyi_generator", src_dir.name],
7272
cwd=src_dir.parent,
7373
check=True,
7474
)
Lines changed: 1 addition & 1 deletion
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "reflex-core"
2+
name = "reflex-base"
33
dynamic = ["version"]
44
description = "Core types for the Reflex framework."
55
readme = "README.md"
@@ -18,7 +18,7 @@ dependencies = [
1818
source = "uv-dynamic-versioning"
1919

2020
[tool.uv-dynamic-versioning]
21-
pattern-prefix = "reflex-core-"
21+
pattern-prefix = "reflex-base-"
2222
fallback-version = "0.0.0dev0"
2323

2424
[tool.hatch.build]

packages/reflex-core/src/reflex_core/.templates/apps/blank/assets/favicon.ico renamed to packages/reflex-base/src/reflex_base/.templates/apps/blank/assets/favicon.ico

File renamed without changes.

packages/reflex-core/src/reflex_core/.templates/apps/blank/code/__init__.py renamed to packages/reflex-base/src/reflex_base/.templates/apps/blank/code/__init__.py

File renamed without changes.

packages/reflex-core/src/reflex_core/.templates/apps/blank/code/blank.py renamed to packages/reflex-base/src/reflex_base/.templates/apps/blank/code/blank.py

File renamed without changes.

packages/reflex-core/src/reflex_core/.templates/web/.gitignore renamed to packages/reflex-base/src/reflex_base/.templates/web/.gitignore

File renamed without changes.

packages/reflex-core/src/reflex_core/.templates/web/app/entry.client.js renamed to packages/reflex-base/src/reflex_base/.templates/web/app/entry.client.js

File renamed without changes.

packages/reflex-core/src/reflex_core/.templates/web/app/routes.js renamed to packages/reflex-base/src/reflex_base/.templates/web/app/routes.js

File renamed without changes.

0 commit comments

Comments
 (0)