5454 ./bin/lint.sh
5555
5656 - name : Type check
57+ env :
58+ PYTHON_VERSION : ${{ matrix.python-version }}
5759 run : |
5860 source pygraphistry/bin/activate
5961 ./bin/typecheck.sh
@@ -101,6 +103,8 @@ jobs:
101103 ./bin/lint.sh
102104
103105 - name : Type check
106+ env :
107+ PYTHON_VERSION : ${{ matrix.python-version }}
104108 run : |
105109 source pygraphistry/bin/activate
106110 ./bin/typecheck.sh
@@ -143,6 +147,8 @@ jobs:
143147 python -m pip install -e .[test,pygraphviz]
144148
145149 - name : Type check
150+ env :
151+ PYTHON_VERSION : ${{ matrix.python-version }}
146152 run : |
147153 source pygraphistry/bin/activate
148154 ./bin/typecheck.sh
@@ -159,8 +165,7 @@ jobs:
159165
160166 strategy :
161167 matrix :
162- # python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
163- python-version : [3.8, 3.9]
168+ python-version : [3.9, '3.10', 3.11, 3.12]
164169
165170 steps :
166171
@@ -185,6 +190,8 @@ jobs:
185190 python -m pip install -e .[test,testai,umap-learn]
186191
187192 - name : Type check
193+ env :
194+ PYTHON_VERSION : ${{ matrix.python-version }}
188195 run : |
189196 source pygraphistry/bin/activate
190197 ./bin/typecheck.sh
@@ -206,8 +213,7 @@ jobs:
206213
207214 strategy :
208215 matrix :
209- python-version : [3.8, 3.9]
210- # python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
216+ python-version : [3.9, '3.10', 3.11, 3.12]
211217 # include:
212218 # - python-version: 3.12
213219 # continue-on-error: true
@@ -233,14 +239,16 @@ jobs:
233239 source pygraphistry/bin/activate
234240 python -m pip install --upgrade pip
235241 python -m pip install -e .[test,testai,ai]
236- echo "dirty-cat : `pip show dirty-cat | grep Version`"
242+ echo "skrub : `pip show skrub | grep Version`"
237243 echo "pandas: `pip show pandas | grep Version`"
238244 echo "numpy: `pip show numpy | grep Version`"
239245 echo "scikit-learn: `pip show scikit-learn | grep Version`"
240246 echo "scipy: `pip show scipy | grep Version`"
241247 echo "umap-learn: `pip show umap-learn | grep Version`"
242248
243249 - name : Type check
250+ env :
251+ PYTHON_VERSION : ${{ matrix.python-version }}
244252 run : |
245253 source pygraphistry/bin/activate
246254 ./bin/typecheck.sh
@@ -270,6 +278,11 @@ jobs:
270278 source pygraphistry/bin/activate
271279 ./bin/test-embed.sh
272280
281+ - name : Full DGL tests (rich featurize)
282+ run : |
283+ source pygraphistry/bin/activate
284+ ./bin/test-dgl.sh
285+
273286
274287 test-neo4j :
275288
0 commit comments