Skip to content

Commit

Permalink
(blue-krill 2.0.x) Update: Loosen the version restriction on sub-dep …
Browse files Browse the repository at this point in the history
…`cryptography` (#159)
  • Loading branch information
piglei committed Apr 7, 2024
1 parent d4b967e commit 0af99bb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions sdks/blue-krill/CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Change logs

### 2.0.3

- Loosen the version restriction on sub-dep `cryptography`

### 2.0.2

- Fix: configure the correct SM4 encryption algorithm
Expand All @@ -13,6 +17,10 @@
- Feature: support use pydantic 1.7+ & 2.0+
- Deprecated: drop support for python 3.6 & 3.7

### 1.2.6

- Loosen the version restriction on sub-dep `cryptography`

### 1.2.5

- Feature: MySQLProbe support both pymysql and mysqlclient
Expand Down
2 changes: 1 addition & 1 deletion sdks/blue-krill/blue_krill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
"""
__version__ = '2.0.0'
__version__ = "2.0.3"
10 changes: 5 additions & 5 deletions sdks/blue-krill/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[tool.poetry]
name = "blue-krill"
version = "2.0.2"
version = "2.0.3"
description = "Tools and common packages for blueking PaaS platform."
include = ["blue_krill/py.typed"]
readme = "README.md"
authors = ["blueking <blueking@tencent.com>"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]

[project.urls]
Expand All @@ -17,8 +17,8 @@ Repository = "https://github.com/TencentBlueKing/bkpaas-python-sdk/"

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
dataclasses = {version = "^0.7", python = ">=3.6.2,<3.7"}
cryptography = "^3.0.0"
dataclasses = { version = "^0.7", python = ">=3.6.2,<3.7" }
cryptography = ">=3.0.0"
django-environ = "^0.8.1"
pyjwt = ">=1.7.1"
requests = "*"
Expand Down

0 comments on commit 0af99bb

Please sign in to comment.