Skip to content

Commit ab3550b

Browse files
authored
clean up subpackage pyproject.toml dependencies (#6377)
set lower bounds for all internal packages that appear in pyproject.toml dependencies
1 parent e9a7b86 commit ab3550b

16 files changed

Lines changed: 51 additions & 35 deletions

File tree

packages/reflex-components-code/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
1010
dependencies = [
11-
"reflex-components-core",
12-
"reflex-components-lucide",
13-
"reflex-components-radix",
11+
"reflex-base >= 0.9.0",
12+
"reflex-components-core >= 0.9.0",
13+
"reflex-components-lucide >= 0.9.0",
14+
"reflex-components-radix >= 0.9.0",
1415
]
1516

1617
[tool.hatch.version]

packages/reflex-components-core/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
1010
dependencies = [
11-
"reflex-components-lucide",
12-
"reflex-components-sonner",
11+
"reflex-base >= 0.9.0",
12+
"reflex-components-lucide >= 0.9.0",
13+
"reflex-components-sonner >= 0.9.0",
1314
"python_multipart",
1415
"starlette",
1516
"typing_extensions",

packages/reflex-components-dataeditor/pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ readme = "README.md"
77
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
10-
dependencies = ["reflex-components-core"]
10+
dependencies = [
11+
"reflex-base >= 0.9.0",
12+
"reflex-components-core >= 0.9.0",
13+
]
1114

1215
[tool.hatch.version]
1316
source = "uv-dynamic-versioning"

packages/reflex-components-gridjs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
10-
dependencies = []
10+
dependencies = ["reflex-base >= 0.9.0"]
1111

1212
[tool.hatch.version]
1313
source = "uv-dynamic-versioning"

packages/reflex-components-internal/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ readme = "README.md"
77
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
10-
dependencies = ["reflex"]
10+
dependencies = [
11+
"reflex >= 0.9.0",
12+
]
1113

1214
[tool.hatch.version]
1315
source = "uv-dynamic-versioning"

packages/reflex-components-lucide/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
10-
dependencies = []
10+
dependencies = ["reflex-base >= 0.9.0"]
1111

1212
[tool.hatch.version]
1313
source = "uv-dynamic-versioning"

packages/reflex-components-markdown/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
1010
dependencies = [
11-
"reflex-components-code",
12-
"reflex-components-core",
13-
"reflex-components-radix",
11+
"reflex-base >= 0.9.0",
12+
"reflex-components-code >= 0.9.0",
13+
"reflex-components-core >= 0.9.0",
14+
"reflex-components-radix >= 0.9.0",
1415
]
1516

1617
[tool.hatch.version]

packages/reflex-components-moment/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
10-
dependencies = []
10+
dependencies = ["reflex-base >= 0.9.0"]
1111

1212
[tool.hatch.version]
1313
source = "uv-dynamic-versioning"

packages/reflex-components-plotly/pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ readme = "README.md"
77
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
10-
dependencies = ["reflex-components-core"]
10+
dependencies = [
11+
"reflex-base >= 0.9.0",
12+
"reflex-components-core >= 0.9.0",
13+
]
1114

1215
[tool.hatch.version]
1316
source = "uv-dynamic-versioning"

packages/reflex-components-radix/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
88
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
99
requires-python = ">=3.10"
1010
dependencies = [
11-
"reflex-components-core",
12-
"reflex-components-lucide",
11+
"reflex-base >= 0.9.0",
12+
"reflex-components-core >= 0.9.0",
13+
"reflex-components-lucide >= 0.9.0",
1314
]
1415

1516
[tool.hatch.version]

0 commit comments

Comments
 (0)