Skip to content

Commit 613b28a

Browse files
committed
Fixing deps and activating windows build
1 parent f73c2ac commit 613b28a

6 files changed

Lines changed: 502 additions & 1217 deletions

File tree

.github/workflows/build-python-client.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ jobs:
1919
os: [ubuntu-latest]
2020
experimental: [false]
2121
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
22+
include:
23+
# - python-version: "3.11"
24+
# os: ubuntu-latest
25+
# experimental: true
26+
# - python-version: "3.10"
27+
# os: macos-latest
28+
# experimental: true
29+
# - python-version: "3.10" # https://github.com/tensorflow/io Does not talk about win 2022
30+
# os: windows-2022
31+
# experimental: true
32+
- python-version: "3.10"
33+
os: windows-2019
34+
experimental: false
2235
continue-on-error: ${{ matrix.experimental }} # https://ncorti.com/blog/howto-github-actions-build-matrix
2336
steps:
2437

python-client/giskard/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# type: ignore[attr-defined]
22
"""Inspect your AI models visually, find bugs, give feedback 🕵️‍♀️ 💬"""
33

4-
import sys
4+
from importlib import metadata as importlib_metadata
55

66
from giskard.client.giskard_client import GiskardClient
77
from giskard.client.project import Project
@@ -24,10 +24,6 @@
2424
from .utils.analytics_collector import analytics
2525

2626
configure_logging()
27-
if sys.version_info >= (3, 8):
28-
from importlib import metadata as importlib_metadata
29-
else:
30-
import importlib_metadata
3127

3228

3329
def get_version() -> str:

python-client/noxfile.py

Lines changed: 0 additions & 98 deletions
This file was deleted.

0 commit comments

Comments
 (0)