fix: apache-superset-core exported packages (#34977)

This commit is contained in:
Michael S. Molina
2025-09-02 12:58:34 -03:00
committed by GitHub
parent 92879e6b32
commit 322442d5be
5 changed files with 8 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
# no bounds for apache-superset-core until a stable version
# no bounds for apache-superset-core until we have a stable version
"apache-superset-core",
"backoff>=1.8.0",
"celery>=5.3.6, <6.0.0",

View File

@@ -158,7 +158,6 @@ greenlet==3.1.1
# via
# apache-superset (pyproject.toml)
# shillelagh
# sqlalchemy
gunicorn==23.0.0
# via apache-superset (pyproject.toml)
h11==0.16.0

View File

@@ -327,7 +327,6 @@ greenlet==3.1.1
# apache-superset
# gevent
# shillelagh
# sqlalchemy
grpcio==1.71.0
# via
# apache-superset
@@ -452,7 +451,7 @@ marshmallow-sqlalchemy==1.4.0
# flask-appbuilder
marshmallow-union==0.1.15
# via
# -c requirements/base.txt
# -c requirements/base-constraint.txt
# apache-superset
matplotlib==3.9.0
# via prophet

View File

@@ -18,7 +18,7 @@
[project]
name = "apache-superset-core"
version = "0.0.1rc1"
version = "0.0.1rc2"
description = "Core Python package for building Apache Superset backend extensions and integrations"
readme = "README.md"
authors = [
@@ -57,5 +57,7 @@ requires = ["setuptools>=76.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["superset_core"]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]

View File

@@ -43,7 +43,8 @@ classifiers = [
"Topic :: System :: Software Distribution",
]
dependencies = [
"apache-superset-core>=0.0.1rc1, <0.2",
# no bounds for apache-superset-core until we have a stable version
"apache-superset-core",
"click>=8.0.3",
"jinja2>=3.1.6",
"semver>=3.0.4",