From 22a4a84892431ea8909690da7e2ccdfb1dd5cdde Mon Sep 17 00:00:00 2001 From: colton Date: Tue, 6 Feb 2024 12:49:33 -0500 Subject: [PATCH] [daggy-u] bump project_dagster_university_start to 1.6.* (#19566) ## Summary & Motivation Dagster University training material is in the process of being updated to v1.6.* -- to prepare for that, the start project needs to be on this version. ## How I Tested These Changes Ran the project locally, and confirmed no errors were present: ```bash pip install -e ".[dev]" ``` Duplicate the `.env.example` file and rename it to `.env`. Then, start the Dagster UI web server: ```bash dagster dev ``` --- examples/project_dagster_university_start/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/project_dagster_university_start/setup.py b/examples/project_dagster_university_start/setup.py index ab92c9ca66d78..015df7dcd345d 100644 --- a/examples/project_dagster_university_start/setup.py +++ b/examples/project_dagster_university_start/setup.py @@ -4,7 +4,7 @@ name="dagster_university", packages=find_packages(exclude=["dagster_university_tests"]), install_requires=[ - "dagster==1.5.*", + "dagster==1.6.*", "dagster-cloud", "dagster-duckdb", "geopandas",