Skip to content

Commit d7e087e

Browse files
committed
chore: bump version to 0.7.0alpha3
1 parent ec83c25 commit d7e087e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "binaryai"
7-
version = "0.7.0alpha2"
7+
version = "0.7.0alpha3"
88
description = "BinaryAI-SDK is a library provides an abstracted client module to simplify the procedure of uploading file for analysis."
99
license = "GPLv3"
1010
authors = ["binaryai <[email protected]>"]

src/binaryai/utils.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
from hashlib import sha256
5-
6-
import hmac
7-
import hashlib
84
import datetime
5+
import hashlib
6+
import hmac
97
import typing
8+
from hashlib import sha256
109

1110
import httpx
1211

tests/test_utils.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import datetime
2-
import unittest.mock as mock
3-
import httpx
42
import unittest
3+
import unittest.mock as mock
54
import zoneinfo
65

6+
import httpx
7+
78
from binaryai.utils import QCloudHttpxAuth
89

910

0 commit comments

Comments
 (0)