Skip to content

Commit

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

### 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__ = '1.2.5'
__version__ = "1.2.6"
6 changes: 3 additions & 3 deletions sdks/blue-krill/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "blue-krill"
version = "1.2.5"
version = "1.2.6"
description = "Tools and common packages for blueking paas"
license = "Apache License 2.0"
readme = "README.md"
Expand All @@ -9,8 +9,8 @@ include = ["blue_krill/py.typed"]

[tool.poetry.dependencies]
python = ">=3.6.2,<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 294a2fd

Please sign in to comment.