[issue46114] OpenSSL 3.0 uses different version scheme

2022-03-22 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Case in point: https://buildbot.python.org/all/#/builders/355/builds/338 -- ___ Python tracker ___

[issue46114] OpenSSL 3.0 uses different version scheme

2022-03-18 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: 3.8 builds are still running on the buildbots so not fixing 3.8 will cause them to fail. -- nosy: +cstratak ___ Python tracker ___

[issue46114] OpenSSL 3.0 uses different version scheme

2022-03-18 Thread Miro Hrončok
Miro Hrončok added the comment: Ack, will do it downstream-only. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue46114] OpenSSL 3.0 uses different version scheme

2022-03-18 Thread Christian Heimes
Christian Heimes added the comment: Correct, I didn't backport this fix and several other OpenSSL 3.0 related fixes to Python 3.8 because 3.8 is in security-only mode. -- ___ Python tracker

[issue46114] OpenSSL 3.0 uses different version scheme

2022-03-18 Thread Miro Hrončok
Miro Hrončok added the comment: 3.8 is security only, so I suppose there is no chance of getting the test fixed as well? -- nosy: +hroncok ___ Python tracker ___

[issue46114] OpenSSL 3.0 uses different version scheme

2021-12-17 Thread Christian Heimes
Christian Heimes added the comment: New changeset a9b3edb66f2976a5895b6399ee905ac2f27718ac by Christian Heimes in branch '3.9': [3.9] bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170) (GH-30173) https://github.com/python/cpython/commit/a9b3edb66f2976a5895b6399ee905ac2f27718ac

[issue46114] OpenSSL 3.0 uses different version scheme

2021-12-17 Thread miss-islington
miss-islington added the comment: New changeset 251d2eadc7f5b4042245709f41c38169a284e146 by Miss Islington (bot) in branch '3.10': bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170) https://github.com/python/cpython/commit/251d2eadc7f5b4042245709f41c38169a284e146 --

[issue46114] OpenSSL 3.0 uses different version scheme

2021-12-17 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28389 pull_request: https://github.com/python/cpython/pull/30173 ___ Python tracker ___

[issue46114] OpenSSL 3.0 uses different version scheme

2021-12-17 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +28388 pull_request: https://github.com/python/cpython/pull/30172 ___ Python tracker

[issue46114] OpenSSL 3.0 uses different version scheme

2021-12-17 Thread Christian Heimes
Christian Heimes added the comment: New changeset 2985feac4e02d590bb78bcce9e30864be53280ac by Christian Heimes in branch 'main': bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170) https://github.com/python/cpython/commit/2985feac4e02d590bb78bcce9e30864be53280ac --

[issue46114] OpenSSL 3.0 uses different version scheme

2021-12-17 Thread Christian Heimes
Christian Heimes added the comment: FYI, OpenSSL_version_num() is not deprecated and Python does not fail to build with OpenSSL 3.0.1. One test case is failing because OpenSSL 3 changed the version scheme slightly. -- title: OpenSSL deprecated OpenSSL_version_num() since version