File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 63
63
python-version : 3.8 # because of our supported TensorFlow versions, must build on 3.6-3.8
64
64
- run : python -m pip install --upgrade pip && pip install --upgrade setuptools
65
65
name : Ensure latest pip and setuptools
66
- - run : pip install -U cython && pip install - e .[all] ${{ inputs.use_lkg && '-r lkg.txt' }}
66
+ - run : pip install -e .[all] ${{ inputs.use_lkg && '-r lkg.txt' }}
67
67
name : Install econml[all]
68
68
- run : sudo apt-get -yq install graphviz
69
69
name : Install graphviz
Original file line number Diff line number Diff line change 91
91
python-version : 3.8 # because of our supported TensorFlow versions, must build on 3.6-3.8
92
92
- run : python -m pip install --upgrade pip && pip install --upgrade setuptools
93
93
name : Ensure latest pip and setuptools
94
- - run : pip install -U cython && pip install - e .[all] ${{ inputs.use_lkg && '-r lkg.txt' }}
94
+ - run : pip install -e .[all] ${{ inputs.use_lkg && '-r lkg.txt' }}
95
95
name : Install econml[all]
96
96
- run : python setup.py sdist
97
97
name : Build sdist
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ requires = [
4
4
" wheel" ,
5
5
" oldest-supported-numpy" ,
6
6
" scipy" ,
7
- " cython"
7
+ " cython<3 " # Our native code has several incompatibilities with Cython 3
8
8
]
9
9
build-backend = " setuptools.build_meta"
10
10
You can’t perform that action at this time.
0 commit comments