Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c2afb4f

Browse files
authoredOct 18, 2024
Backport metadata fix for vectors (#11797)
* Added a README for vectors, for the benefit of twine check (#11589) * Backport metadata fix for vectors
1 parent 9a3cdb5 commit c2afb4f

File tree

7 files changed

+26
-5
lines changed

7 files changed

+26
-5
lines changed
 

‎CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
.. _v43-0-3:
5+
6+
43.0.3 - 2024-10-18
7+
~~~~~~~~~~~~~~~~~~~
8+
9+
* Fixed release metadata for ``cryptography-vectors``
10+
411
.. _v43-0-2:
512

613
43.0.2 - 2024-10-18

‎noxfile.py

+8
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,14 @@ def docs(session: nox.Session) -> None:
153153
session.run(
154154
"python3", "-m", "readme_renderer", "README.rst", "-o", "/dev/null"
155155
)
156+
session.run(
157+
"python3",
158+
"-m",
159+
"readme_renderer",
160+
"vectors/README.rst",
161+
"-o",
162+
"/dev/null",
163+
)
156164

157165

158166
@nox.session(name="docs-linkcheck")

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build-backend = "maturin"
1414

1515
[project]
1616
name = "cryptography"
17-
version = "43.0.2"
17+
version = "43.0.3"
1818
authors = [
1919
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
2020
]
@@ -64,7 +64,7 @@ ssh = ["bcrypt >=3.1.5"]
6464
# All the following are used for our own testing.
6565
nox = ["nox"]
6666
test = [
67-
"cryptography_vectors==43.0.2",
67+
"cryptography_vectors==43.0.3",
6868
"pytest >=6.2.0",
6969
"pytest-benchmark",
7070
"pytest-cov",

‎src/cryptography/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"__version__",
1111
]
1212

13-
__version__ = "43.0.2"
13+
__version__ = "43.0.3"
1414

1515

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

‎vectors/README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pyca/cryptography vectors
2+
=========================
3+
4+
This package contains test vectors which are used in ``pyca/cryptography``'s
5+
tests.

‎vectors/cryptography_vectors/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"__version__",
77
]
88

9-
__version__ = "43.0.2"
9+
__version__ = "43.0.3"

‎vectors/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "cryptography_vectors"
7-
version = "43.0.2"
7+
version = "43.0.3"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1010
]
1111
description = "Test vectors for the cryptography package."
12+
readme = "README.rst"
1213
license = {text = "Apache-2.0 OR BSD-3-Clause"}
1314

1415
[project.urls]

0 commit comments

Comments
 (0)
Failed to load comments.