Skip to content

Commit 62a0f50

Browse files
authored
Bump for 25.1.0 release (#1428)
1 parent a1b4f7f commit 62a0f50

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# Meta
4949
- {VERSION: "3.9", TOXENV: "check-manifest"}
5050
- {VERSION: "3.11", TOXENV: "lint"}
51-
- {VERSION: "3.11", TOXENV: "py311-mypy"}
51+
- {VERSION: "3.13", TOXENV: "py313-mypy"}
5252
- {VERSION: "3.9", TOXENV: "docs"}
5353
name: "${{ matrix.PYTHON.TOXENV }}${{ matrix.PYTHON.OS && format(' on {0}', matrix.PYTHON.OS) || '' }}"
5454
steps:

CHANGELOG.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Changelog
44
Versions are year-based with a strict backward-compatibility policy.
55
The third digit is only for regressions.
66

7-
UNRELEASED
8-
----------
7+
25.1.0 (2025-05-17)
8+
-------------------
99

1010
Backward-incompatible changes:
1111
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -20,6 +20,8 @@ Deprecations:
2020
Changes:
2121
^^^^^^^^
2222

23+
* ``cryptography`` maximum version has been increased to 45.0.x.
24+
2325

2426
25.0.0 (2025-01-12)
2527
-------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def find_meta(meta):
9494
packages=find_packages(where="src"),
9595
package_dir={"": "src"},
9696
install_requires=[
97-
"cryptography>=41.0.5,<45",
97+
"cryptography>=41.0.5,<46",
9898
(
9999
"typing-extensions>=4.9; "
100100
"python_version < '3.13' and python_version >= '3.8'"

src/OpenSSL/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"__version__",
1818
]
1919

20-
__version__ = "25.0.0"
20+
__version__ = "25.1.0"
2121

2222
__title__ = "pyOpenSSL"
2323
__uri__ = "https://pyopenssl.org/"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{py3,37,38,39,310,311,312,313}{,-cryptographyMinimum}{,-useWheel}{,-randomorder},check-manifest,lint,py311-mypy,docs,coverage-report
2+
envlist = py{py3,37,38,39,310,311,312,313}{,-cryptographyMinimum}{,-useWheel}{,-randomorder},check-manifest,lint,py313-mypy,docs,coverage-report
33

44
[testenv]
55
allowlist_externals =
@@ -41,7 +41,7 @@ commands =
4141
ruff check .
4242
ruff format --check .
4343

44-
[testenv:py311-mypy]
44+
[testenv:py313-mypy]
4545
extras =
4646
test
4747
deps =

0 commit comments

Comments
 (0)