-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdev.yml
More file actions
51 lines (51 loc) · 1.25 KB
/
dev.yml
File metadata and controls
51 lines (51 loc) · 1.25 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
# Conda development environment for testing local source code changes to zppy-interfaces before merging them to production (main branch).
# To set up:
# conda clean --all --y
# conda env create -f conda/dev.yml -n env_name
# pre-commit run --all-files
# pip install .
name: zppy-interfaces-dev
channels:
- conda-forge
dependencies:
# Build
# =======================
- python >=3.11,<3.15
- pip
- setuptools >= 60
# Base
# =================
- beautifulsoup4
- lxml
- matplotlib-base >=3.8.2
- mpas_tools >=0.21.0
- netcdf4
- numpy >=2.0,<3.0
- output_viewer=1.3.3
- pcmdi_metrics>=3.9.3
- xarray >=2023.02.0
- xcdat >=0.7.3,<1.0
# Testing
# =======================
- pytest
- pytest-cov
# Documentation
# =======================
- sphinx
- sphinx-multiversion
- sphinx_rtd_theme
# Quality Assurance Tools
# =======================
# Run `pre-commit autoupdate` to get the latest pinned versions of 'rev' in
# `.pre-commit.config.yaml`, then update the pinned versions here.
# Make sure to also update qa in pyproject.toml
- black ==25.1.0
- flake8 ==7.3.0
- isort ==6.0.1
- mypy ==1.18.2
- pre-commit ==4.3.0
- types-PyYAML >=6.0.0
# Developer Tools
# =======================
- tbump=6.9.0
- ipykernel