We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab9c3d commit 7d10ca1Copy full SHA for 7d10ca1
.github/workflows/workflow.yml
@@ -32,7 +32,7 @@ jobs:
32
# Note: extras temporarily disabled due to aix360 pandas<2.0.0 conflict
33
- name: Lint
34
run: |
35
- pylint --ignore-imports=yes $(find src/trustyai -type f -name "*.py")
+ pylint --ignore-imports=yes $(find src/trustyai -type f -name "*.py" | grep -v "/extras/")
36
- name: Test with pytest
37
38
pytest -v -s tests/general
src/trustyai/initializer.py
@@ -8,6 +8,7 @@
8
# Use sysconfig instead
9
import sysconfig
10
def get_python_lib():
11
+ """Fallback implementation of get_python_lib using sysconfig."""
12
return sysconfig.get_path('purelib')
13
import glob
14
import logging
0 commit comments