mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
bump for 41.0.3 (#9330)
* bump for 41.0.3 * bump openssl versions in CI * version bumps do not work that way * Rebuild cffi module if version changes (#9011) --------- Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
This commit is contained in:
parent
774a4a16cb
commit
b22271cf3c
6 changed files with 12 additions and 11 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
|
@ -28,16 +28,16 @@ jobs:
|
|||
PYTHON:
|
||||
- {VERSION: "3.11", NOXSESSION: "flake"}
|
||||
- {VERSION: "3.11", NOXSESSION: "rust"}
|
||||
- {VERSION: "3.11", NOXSESSION: "docs", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "docs", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2"}}
|
||||
- {VERSION: "pypy-3.8", NOXSESSION: "tests-nocoverage"}
|
||||
- {VERSION: "pypy-3.9", NOXSESSION: "tests-nocoverage"}
|
||||
- {VERSION: "pypy-3.10", NOXSESSION: "tests-nocoverage"}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "1.1.1u"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.0.9"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests-ssh", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1", CONFIG_FLAGS: "no-engine no-rc2 no-srtp no-ct no-psk"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1", CONFIG_FLAGS: "no-legacy", NO_LEGACY: "1"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", NOXARGS: "--enable-fips=1", OPENSSL: {TYPE: "openssl", CONFIG_FLAGS: "enable-fips", VERSION: "3.1.1"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "1.1.1v"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.0.10"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests-ssh", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2", CONFIG_FLAGS: "no-engine no-rc2 no-srtp no-ct no-psk"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2", CONFIG_FLAGS: "no-legacy", NO_LEGACY: "1"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", NOXARGS: "--enable-fips=1", OPENSSL: {TYPE: "openssl", CONFIG_FLAGS: "enable-fips", VERSION: "3.1.2"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "libressl", VERSION: "3.6.3"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "libressl", VERSION: "3.7.3"}}
|
||||
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "libressl", VERSION: "3.8.0"}}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "cryptography"
|
||||
version = "41.0.2"
|
||||
version = "41.0.3"
|
||||
authors = [
|
||||
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ __all__ = [
|
|||
"__copyright__",
|
||||
]
|
||||
|
||||
__version__ = "41.0.2"
|
||||
__version__ = "41.0.3"
|
||||
|
||||
|
||||
__author__ = "The Python Cryptographic Authority and individual contributors"
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ fn main() {
|
|||
let python = env::var("PYO3_PYTHON").unwrap_or_else(|_| "python3".to_string());
|
||||
println!("cargo:rerun-if-env-changed=PYO3_PYTHON");
|
||||
println!("cargo:rerun-if-changed=../../_cffi_src/");
|
||||
println!("cargo:rerun-if-changed=../../cryptography/__about__.py");
|
||||
let output = Command::new(&python)
|
||||
.env("OUT_DIR", &out_dir)
|
||||
.arg("../../_cffi_src/build_openssl.py")
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@ __all__ = [
|
|||
"__version__",
|
||||
]
|
||||
|
||||
__version__ = "41.0.2"
|
||||
__version__ = "41.0.3"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "cryptography_vectors"
|
||||
version = "41.0.2"
|
||||
version = "41.0.3"
|
||||
authors = [
|
||||
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue