Skip to content

Commit c439667

Browse files
committed
Fix environment creation
1 parent 0197bb2 commit c439667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ enter_docker_image: build_docker_image
1313
create_environment:
1414
conda create -n $(ENVIRONMENT_NAME) python=3.10 pip
1515
conda run --no-capture-output -n $(ENVIRONMENT_NAME) python -m pip install uv==0.2.5
16-
conda run --no-capture-output -n $(ENVIRONMENT_NAME) uv pip install -c constraints.txt -e .[dev]
16+
conda run --no-capture-output -n $(ENVIRONMENT_NAME) uv pip install -c constraints.txt -e fme[dev]
1717

1818
test:
1919
pytest --durations 20 .

0 commit comments

Comments
 (0)