-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* loosen dependency versions * Fixed the security check failure -> Vulnerability found in black version 22.12.0 Vulnerability ID: 66742 Affected spec: <24.3.0 ADVISORY: Black before 24.3.0 have a security vulnerability where specific code formatting patterns could lead to arbitrary code execution. This issue arises from the unsafe handling of AST nodes, potentially allowing an attacker to execute code when Black formats a maliciously crafted Python file. psf/black@f000936 CVE-2024-21503 For more information, please visit https://data.safetycli.com/v/66742/f17 Scan was completed. 1 vulnerability was found. 1 vulnerability from 1 package was ignored. * Files reformatted Files are reformatted due to black upgrading. * updated python versions * dropped 3.12
- Loading branch information
1 parent
cecd0ac
commit 9097d0a
Showing
18 changed files
with
621 additions
and
706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
""" A client library for accessing Datasource API """ | ||
|
||
from .client import AuthenticatedClient, Client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Feature Store module.""" | ||
|
||
from typing import Any, List, Optional, cast | ||
|
||
import json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Containing script to sync feature store from feast to domino""" | ||
|
||
import argparse | ||
import sys | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Datasource module.""" | ||
|
||
from typing import Any, Dict, List, Optional, cast | ||
|
||
import configparser | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
"""Domino TrainingSet client library.""" | ||
|
||
|
||
from typing import List, Mapping, Optional | ||
|
||
import json | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
anyio==4.3.0 ; python_version >= "3.8" and python_version < "4.0" | ||
attrs==23.2.0 ; python_version >= "3.8" and python_version < "4.0" | ||
backoff==1.11.1 ; python_version >= "3.8" and python_version < "4.0" | ||
bson==0.5.10 ; python_version >= "3.8" and python_version < "4.0" | ||
certifi==2024.2.2 ; python_version >= "3.8" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32" | ||
exceptiongroup==1.2.0 ; python_version >= "3.8" and python_version < "3.11" | ||
h11==0.14.0 ; python_version >= "3.8" and python_version < "4.0" | ||
httpcore==0.16.3 ; python_version >= "3.8" and python_version < "4.0" | ||
httpx==0.23.3 ; python_version >= "3.8" and python_version < "4.0" | ||
idna==3.6 ; python_version >= "3.8" and python_version < "4.0" | ||
loguru==0.5.3 ; python_version >= "3.8" and python_version < "4.0" | ||
numpy==1.24.4 ; python_version >= "3.8" and python_version < "4.0" | ||
pandas==1.5.3 ; python_version >= "3.8" and python_version < "4.0" | ||
pyarrow==14.0.2 ; python_version >= "3.8" and python_version < "4.0" | ||
python-dateutil==2.9.0.post0 ; python_version >= "3.8" and python_version < "4.0" | ||
pytz==2024.1 ; python_version >= "3.8" and python_version < "4.0" | ||
rfc3986[idna2008]==1.5.0 ; python_version >= "3.8" and python_version < "4.0" | ||
six==1.16.0 ; python_version >= "3.8" and python_version < "4.0" | ||
sniffio==1.3.1 ; python_version >= "3.8" and python_version < "4.0" | ||
typing-extensions==4.10.0 ; python_version >= "3.8" and python_version < "3.11" | ||
urllib3==1.26.18 ; python_version >= "3.8" and python_version < "4.0" | ||
win32-setctime==1.1.0 ; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32" | ||
anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0" | ||
attrs==23.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
backoff==2.2.1 ; python_version >= "3.9" and python_version < "4.0" | ||
bson==0.5.10 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" | ||
exceptiongroup==1.2.1 ; python_version >= "3.9" and python_version < "3.11" | ||
h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" | ||
httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" | ||
httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.7 ; python_version >= "3.9" and python_version < "4.0" | ||
loguru==0.5.3 ; python_version >= "3.9" and python_version < "4.0" | ||
numpy==1.24.4 ; python_version >= "3.9" and python_version < "4.0" | ||
pandas==2.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
pyarrow==14.0.2 ; python_version >= "3.9" and python_version < "4.0" | ||
python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" | ||
pytz==2024.1 ; python_version >= "3.9" and python_version < "4.0" | ||
six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" | ||
typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "3.11" | ||
tzdata==2024.1 ; python_version >= "3.9" and python_version < "4.0" | ||
urllib3==1.26.18 ; python_version >= "3.9" and python_version < "4.0" | ||
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Generator for Datasource Enums and Config entities.""" | ||
|
||
from typing import Any, Dict | ||
|
||
import argparse | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Test feature store git operations""" | ||
|
||
from unittest.mock import MagicMock | ||
|
||
import pytest as pytest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Test Domino customized Pinecone OpenAPI Configuration""" | ||
|
||
import os | ||
|
||
from domino_data.vectordb import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
""" A client library for accessing TrainingSet API """ | ||
|
||
from .client import AuthenticatedClient, Client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters