forked from OpenAssetIO/OpenAssetIO
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Build] Remove official support for CY22
Closes OpenAssetIO#1389. Closes OpenAssetIO#1352. VFX Reference Platform CY22 is rather old now, especially to use as a default, and removing support has additional advantages: * We no longer need to worry about switching the libstdc++ ABI between old and new. E.g. previously we were using the old ABI even for Python 3.10+ wheel builds, which was wrong. * We no longer need to use the backport of `importlib_metadata`, since the API is stable as of Python 3.10 (CY23). So remove Python 3.9 support, including no longer building/deploying wheels. Hence bump the `cibuildwheel` Docker image to `manylinux_2_28` for all Python wheels, and use the new libstdc++ ABI for Conan packages. This then means the libstdc++ ABI and glibc version matches for at least CY23 through CY24 (and likely CY25 too). Also remove `importlib_metadata` dependency, now that it's no longer required since Python 3.10+ has a stable API. Signed-off-by: David Feltell <[email protected]>
- Loading branch information
Showing
16 changed files
with
36 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,7 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "openassetio" | ||
version = "1.0.0b2.rev2" | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"importlib_metadata >= 3.6" | ||
] | ||
requires-python = ">=3.10" | ||
|
||
authors = [ | ||
{ name = "Contributors to the OpenAssetIO project", email = "[email protected]" } | ||
|
@@ -37,7 +34,6 @@ classifiers = [ | |
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
|
@@ -144,5 +140,5 @@ environment-pass = ["PIP_VERBOSE", "OPENASSETIO_TEST_ENABLE_PYTHON_STUBGEN"] | |
|
||
[tool.cibuildwheel.linux] | ||
# Linux runs in a docker container, with the project at top level | ||
before-build = "resources/build/bootstrap-cibuildwheel-manylinux-2014.sh" | ||
before-build = "resources/build/bootstrap-cibuildwheel-manylinux.sh" | ||
environment = { CMAKE_TOOLCHAIN_FILE=".conan/conan_paths.cmake" } |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters