Skip to content

Commit

Permalink
Fix Dagster build
Browse files Browse the repository at this point in the history
Deprecate 3.8 build
  • Loading branch information
treff7es committed Dec 13, 2024
1 parent eef2077 commit d0fb3e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/dagster-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,8 @@ jobs:
DATAHUB_TELEMETRY_ENABLED: false
strategy:
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.10"]
include:
- python-version: "3.8"
extraPythonRequirement: "dagster>=1.3.3"
- python-version: "3.10"
extraPythonRequirement: "dagster>=1.3.3"
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion metadata-ingestion-modules/dagster-plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def get_long_description():
],
# Package info.
zip_safe=False,
python_requires=">=3.8",
python_requires=">=3.9",
package_dir={"": "src"},
packages=setuptools.find_namespace_packages(where="./src"),
entry_points=entry_points,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
)
from dagster._core.definitions.sensor_definition import (
DefaultSensorStatus,
RawSensorEvaluationFunctionReturn,
SensorReturnTypesUnion,
)
from dagster._core.definitions.target import ExecutableDefinition
from dagster._core.definitions.unresolved_asset_job_definition import (
Expand Down Expand Up @@ -691,7 +691,7 @@ def _emit_asset_metadata(

def _emit_metadata(
self, context: RunStatusSensorContext
) -> RawSensorEvaluationFunctionReturn:
) -> SensorReturnTypesUnion:
"""
Function to emit metadata for datahub rest.
"""
Expand Down

0 comments on commit d0fb3e5

Please sign in to comment.