-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli.project): enable optional minimalist configuration in templa…
…tes (#25245) PEP 621 (Nov 2020) introduced pyproject.toml. Setuptools is fully compatible with pyroject. All the config in setup.cfg and setup.py will also be in pyproject.toml project template if this is merged. Minimalist config to make adopting dagster easy. ## Summary & Motivation See #25244 ## How I Tested These Changes ![image](https://github.com/user-attachments/assets/75473daa-a282-4564-93fd-db1d95cf2691) Last time I tried the run the test suite it failed because my macbook has an intel chipset. ## Changelog (CLI) `dagster project scaffold`: Add option to create dagster projects from templates with excluded files/filepaths `dagster project scaffold-code-location`: Refactored to leverage scaffold command with excludes flag. Deprecated. --------- Co-authored-by: Colton Padden <[email protected]>
- Loading branch information
Showing
16 changed files
with
256 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
from dagster._generate.download import download_example_from_github as download_example_from_github | ||
from dagster._generate.generate import ( | ||
generate_code_location as generate_code_location, | ||
generate_project as generate_project, | ||
generate_repository as generate_repository, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.