Skip to content

Commit 5770f35

Browse files
committed
bump for 46.0.4 and drop win arm64 due to CI issues
1 parent c0af4dd commit 5770f35

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -361,11 +361,6 @@ jobs:
361361
- {VERSION: "3.8", NOXSESSION: "tests-nocoverage"}
362362
- {VERSION: "3.13", NOXSESSION: "tests"}
363363
- {VERSION: "3.14t-dev", NOXSESSION: "tests"}
364-
include:
365-
# Not in the main matrix because we want tests-nocoverage on Python
366-
# 3.13
367-
- PYTHON: {VERSION: "3.13", NOXSESSION: "tests-nocoverage"}
368-
WINDOWS: {ARCH: 'arm64', WINDOWS: 'arm64', RUNNER: 'windows-11-arm'}
369364
timeout-minutes: 15
370365
steps:
371366
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/wheel-builder.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,11 +321,10 @@ jobs:
321321
WINDOWS:
322322
- {ARCH: 'x86', WINDOWS: 'win32', RUST_TRIPLE: 'i686-pc-windows-msvc', RUNNER: 'windows-latest'}
323323
- {ARCH: 'x64', WINDOWS: 'win64', RUST_TRIPLE: 'x86_64-pc-windows-msvc', RUNNER: 'windows-latest'}
324-
- {ARCH: 'arm64', WINDOWS: 'arm64', RUST_TRIPLE: 'aarch64-pc-windows-msvc', RUNNER: 'windows-11-arm'}
325324
PYTHON:
326325
- {VERSION: "3.11", "ABI_VERSION": "py38"}
327326
- {VERSION: "3.11", "ABI_VERSION": "py311"}
328-
- {VERSION: "3.14t-dev"}
327+
- {VERSION: "3.14t"}
329328
- {VERSION: "pypy-3.10"}
330329
- {VERSION: "pypy-3.11"}
331330
exclude:

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
.. v46-0-4:
5+
6+
46.0.4 - 2026-01-27
7+
~~~~~~~~~~~~~~~~~~~
8+
9+
* `Dropped support for win_arm64 wheels`_.
10+
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.4.
11+
412
.. _v46-0-3:
513

614
46.0.3 - 2025-10-15
@@ -2763,3 +2771,4 @@ Changelog
27632771
.. _`main`: https://github.com/pyca/cryptography/
27642772
.. _`cffi`: https://cffi.readthedocs.io/
27652773
.. _`aws-lc`: https://github.com/aws/aws-lc
2774+
.. _`Dropped support for win_arm64 wheels`: https://github.com/pyca/cryptography/pull/14216

docs/installation.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ operating systems.
3535
Sid (unstable)
3636
* x86-64 and ARM64 Alpine (latest)
3737
* 32-bit and 64-bit Python on 64-bit Windows Server 2022
38-
* ARM64 Windows 11
3938

4039
We test compiling with ``clang`` as well as ``gcc`` and use the following
4140
OpenSSL releases in addition to distribution provided releases from the

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ build-backend = "maturin"
1616

1717
[project]
1818
name = "cryptography"
19-
version = "46.0.3"
19+
version = "46.0.4"
2020
authors = [
2121
{ name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org" },
2222
]
@@ -70,7 +70,7 @@ ssh = ["bcrypt >=3.1.5"]
7070
# All the following are used for our own testing.
7171
nox = ["nox[uv] >=2024.04.15"]
7272
test = [
73-
"cryptography_vectors==46.0.3",
73+
"cryptography_vectors==46.0.4",
7474
"pytest >=7.4.0",
7575
"pytest-benchmark >=4.0",
7676
"pytest-cov >=2.10.1",

src/cryptography/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"__version__",
1111
]
1212

13-
__version__ = "46.0.3"
13+
__version__ = "46.0.4"
1414

1515

1616
__author__ = "The Python Cryptographic Authority and individual contributors"

vectors/cryptography_vectors/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"__version__",
77
]
88

9-
__version__ = "46.0.3"
9+
__version__ = "46.0.4"

vectors/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "uv_build"
44

55
[project]
66
name = "cryptography_vectors"
7-
version = "46.0.3"
7+
version = "46.0.4"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1010
]

0 commit comments

Comments
 (0)