-
Notifications
You must be signed in to change notification settings - Fork 0
/
develop.yml
42 lines (42 loc) · 887 Bytes
/
develop.yml
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
# requirements for phasor's development environment
name: phasor
dependencies:
- numpy
- scipy
# python 3.8 and > no longer supports modifying grouper shared axes
# see https://matplotlib.org/stable/api/prev_api_changes/api_changes_3.8.0.html#
# groupers-from-get-shared-x-axes-get-shared-y-axes-are-immutable
# A change needs to be made in openseize to correct this issue
- matplotlib<=3.7
- ipython
- notebook
- scikit-image
- pillow
- psutil
# testing
- pytest
- pytest-cov
# Linting & format
- isort
- mypy
- pylint
# pypi packages
- pip
- pip:
- openseize
# testing
- pytest-lazy-fixture
# formatting
- black
- codespell
# versioning
- bumpver
# doc builders
- mkdocs
- mkdocs-material
- "mkdocstrings[python]"
- mkdocs-jupyter
# packaging
- pip-tools
- build
- twine