File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ # top-most EditorConfig file
2
+ root = true
3
+
4
+ # Unix-style newlines with a newline ending every file
5
+ [* ]
6
+ end_of_line = lf
7
+ insert_final_newline = true
8
+
9
+ # Matches multiple files with brace expansion notation
10
+ # Set default charset
11
+ [* .py ]
12
+ charset = utf-8
13
+
14
+ # 4 space indentation
15
+ [* .py ]
16
+ indent_style = space
17
+ indent_size = 4
18
+
19
+ # Matches the exact files either package.json or .travis.yml
20
+ [{* .{json,yml,yaml}]
21
+ indent_style = space
22
+ indent_size = 2
Original file line number Diff line number Diff line change 77
77
micromamba activate pmg
78
78
# TODO remove temporary fix. added since uv install torch is flaky.
79
79
# track https://github.com/astral-sh/uv/issues/1921 for resolution
80
- pip install torch
80
+ pip install torch --upgrade
81
81
82
82
uv pip install numpy cython
83
83
uv pip install --editable '.[${{ matrix.config.extras }}]' --resolution=${{ matrix.config.resolution }}
Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ dependencies = [
60
60
" matplotlib>=3.8" ,
61
61
" monty>=2024.5.24" ,
62
62
" networkx>=2.2" ,
63
- " numpy>=1.25.0,<2.0.0" ,
63
+ ' numpy>=1.25.0,<2.0 ; platform_system == "Windows"' ,
64
+ ' numpy>=1.25.0 ; platform_system != "Windows"' ,
64
65
" palettable>=3.1.1" ,
65
66
" pandas>=2" ,
66
67
" plotly>=4.5.0" ,
You can’t perform that action at this time.
0 commit comments