forked from djosix/Performance-RNN-PyTorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment-dev.yml
More file actions
62 lines (52 loc) · 1.45 KB
/
Copy pathenvironment-dev.yml
File metadata and controls
62 lines (52 loc) · 1.45 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Conda environment for Performance RNN Development
# This includes all development tools (testing, formatting, documentation)
# Install with: conda env create -f environment-dev.yml
# Activate with: conda activate py_magenta
#
# Note: Choose your PyTorch installation based on your system:
# - For CPU: Use environment-cpu.yml instead, then install dev tools with: pip install -e ".[dev]"
# - For CUDA: Use environment-cuda.yml instead, then install dev tools with: pip install -e ".[dev]"
# - For MPS: Use environment-mps.yml instead, then install dev tools with: pip install -e ".[dev]"
name: py_magenta
channels:
- pytorch
- conda-forge
- defaults
dependencies:
- python=3.10
# PyTorch (CPU-only for development - change based on your system)
- pytorch>=2.0.0
- torchvision
- torchaudio
- cpuonly
# Core dependencies
- numpy>=1.21.0,<2.0.0
- pandas>=1.3.0
- tqdm>=4.60.0
- tensorboard>=2.10.0
# Testing
- pytest>=7.0.0
- pytest-cov>=3.0.0
- pytest-xdist>=2.5.0
# Code formatting and linting
- black>=22.0.0
- isort>=5.10.0
- flake8>=4.0.0
- mypy>=0.950
# Documentation
- sphinx>=4.5.0
- matplotlib>=3.5.0
# Jupyter notebooks
- jupyter>=1.0.0
- ipykernel>=6.0.0
# pip dependencies
- pip
- pip:
- pretty_midi>=0.2.9
- optuna>=3.0.0
- flake8-docstrings>=1.6.0
- flake8-bugbear>=22.0.0
- types-tqdm
- pre-commit>=2.17.0
- sphinx-rtd-theme>=1.0.0
- sphinx-autodoc-typehints>=1.18.0