Skip to content

Commit b2ca015

Browse files
committed
Refactor python_requirements file path in dagster_cloud.yaml
1 parent d9b5241 commit b2ca015

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dagster_cloud.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ locations:
33
code_source:
44
python_file: ./anomstack/main.py
55
working_directory: .
6-
python_requirements:
7-
file: requirements/requirements.txt
6+
build:
7+
directory: ./requirements

setup.py renamed to requirements/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def read_requirements():
5-
with open('./requirements/requirements.txt') as req:
5+
with open('requirements.txt') as req:
66
return req.read().splitlines()
77

88

0 commit comments

Comments
 (0)