Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing pdm lock running forever, and cleaning up some files #1388

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions python-client/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# VsCode extension
.history
.run
.DS_Store
# Byte-compiled / optimized / DLL files
Expand Down
6 changes: 1 addition & 5 deletions python-client/giskard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# type: ignore[attr-defined]
"""Inspect your AI models visually, find bugs, give feedback 🕵️‍♀️ 💬"""

import sys
from importlib import metadata as importlib_metadata

from giskard.client.giskard_client import GiskardClient
from giskard.client.project import Project
Expand All @@ -24,10 +24,6 @@
from .utils.analytics_collector import analytics

configure_logging()
if sys.version_info >= (3, 8):
from importlib import metadata as importlib_metadata
else:
import importlib_metadata


def get_version() -> str:
Expand Down
98 changes: 0 additions & 98 deletions python-client/noxfile.py

This file was deleted.

Loading