Skip to content

Commit 74c2834

Browse files
eddy-ojbGibbsConsulting
authored andcommitted
added requirements for conda environments using .yaml files. Most of the packages can be installed interchangeably between pip and conda except for packages like 'hiredis', 'daphne' and 'pandas', which are packages (or rely on packages) with external dependencies that are likely to cause newbies problems on Windows. If these .yaml files work on windows, my assumption is that they are fine on every other system. (#45)
1 parent 618f41a commit 74c2834

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

dev_requirements.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: dpd
2+
channels:
3+
- conda-forge
4+
- defaults
5+
dependencies:
6+
- pandas
7+
- pylint
8+
- pytest>=3.6
9+
- pytest-cov
10+
- pytz
11+
- redis
12+
- twine
13+
- twisted
14+
- hiredis
15+
- pip:
16+
- channels>=2.0
17+
- channels-redis
18+
- daphne
19+
- django-bootstrap4
20+
- django-redis
21+
- grip
22+
- pytest-django
23+
- sphinx-autobuild

requirements.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: dpd
2+
channels:
3+
- conda-forge
4+
- defaults
5+
dependencies:
6+
- django>=2.0
7+
- flask>=1
8+
- pip:
9+
- dash
10+
- dash-core-components
11+
- dash-html-components
12+
- dash-renderer
13+
- plotly
14+
- dpd-components

0 commit comments

Comments
 (0)