-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment-dev.yml
More file actions
26 lines (26 loc) · 818 Bytes
/
Copy pathenvironment-dev.yml
File metadata and controls
26 lines (26 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# DEPRECATED: superseded by the pixi workflow (pixi.toml + committed pixi.lock).
# This file is kept for one release for backward compatibility and will be
# removed afterwards. Prefer pixi for dev installs:
# pixi run start
# pixi run install-engine
# pixi run -e dev test
# See https://pixi.sh and README.md for the pixi quickstart.
#
# Developer install — requires repo clone (installs from local source).
# Includes dev dependencies (pytest, ruff, etc).
#
# Usage:
# git clone https://github.com/HanSur94/matlab-mcp-server-python.git
# cd matlab-mcp-server-python
# conda env create -f environment-dev.yml
# conda activate matlab-mcp-dev
# pytest tests/ -x -q
name: matlab-mcp-dev
channels:
- conda-forge
- defaults
dependencies:
- python=3.12
- pip
- pip:
- -e ".[dev,monitoring]"