File tree 3 files changed +20
-17
lines changed
3 files changed +20
-17
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ For more instructions see the [Pull request checklist](#pull-request-checklist)
47
47
48
48
Always use a feature branch. It' s good practice to never routinely work on the `main` branch of any repository.
49
49
50
- 1. Create a new environment using Python >=3.8, for example 3.11
50
+ 1. Create the environment from the `environment.yml` file.
51
51
52
52
```bash
53
- conda create --name CausalPy python=3.11
53
+ mamba env create -f environment.yml
54
54
```
55
55
56
56
Activate the environment.
Original file line number Diff line number Diff line change
1
+ name : CausalPy
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - arviz>=0.14.0
6
+ - graphviz
7
+ - ipython!=8.7.0
8
+ - matplotlib>=3.5.3
9
+ - numpy<1.26.0
10
+ - pandas
11
+ - patsy
12
+ - pymc>=5.0.0
13
+ - scikit-learn>=1
14
+ - scipy
15
+ - seaborn>=0.11.2
16
+ - statsmodels
17
+ - xarray>=v2022.11.0
Original file line number Diff line number Diff line change @@ -26,21 +26,7 @@ requires-python = ">=3.8"
26
26
#
27
27
# For an analysis of this field vs pip's requirements files see:
28
28
# https://packaging.python.org/discussions/install-requires-vs-requirements/
29
- dependencies = [
30
- " arviz>=0.14.0" ,
31
- " graphviz" ,
32
- " ipython!=8.7.0" ,
33
- " matplotlib>=3.5.3" ,
34
- " numpy<1.26.0" ,
35
- " pandas" ,
36
- " patsy" ,
37
- " pymc>=5.0.0" ,
38
- " scikit-learn>=1" ,
39
- " scipy" ,
40
- " seaborn>=0.11.2" ,
41
- " statsmodels" ,
42
- " xarray>=v2022.11.0" ,
43
- ]
29
+ dependencies = []
44
30
45
31
# List additional groups of dependencies here (e.g. development dependencies). Users
46
32
# will be able to install these using the "extras" syntax, for example:
You can’t perform that action at this time.
0 commit comments