Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cpython: Fixed build error when sqlite3 wasn't used. #9891

Closed

Conversation

erikogenvik
Copy link

Specify library name and version: cpython/3.10.0

If SQLite3 isn't used then the build will fail, since it tries to access the self.options["sqlite3"] option, which only exists if SQLite3 is enabled. This PR fixes that.

fixes #9890


  • I've read the guidelines for contributing.
  • I've followed the PEP8 style guides for Python code in the recipes.
  • I've used the latest Conan client version.
  • I've tried at least one configuration locally with the
    conan-center hook activated.

@conan-center-bot

This comment has been minimized.

@erikogenvik erikogenvik changed the title Fixed build error when sqlite3 wasn't used. cpython: Fixed build error when sqlite3 wasn't used. Mar 23, 2022
Croydon
Croydon previously approved these changes Mar 23, 2022
uilianries
uilianries previously approved these changes Mar 24, 2022
Copy link
Member

@uilianries uilianries left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@uilianries
Copy link
Member

@erikogenvik please, ask for user access on #4. The CI bot only runs approved users.

@conan-center-bot

This comment has been minimized.

@erikogenvik
Copy link
Author

This seems to fail on building for Clang, which ought to be unrelated to this PR. At least that's my guess from a quick look at the output.

@CLAassistant
Copy link

CLAassistant commented Mar 30, 2022

CLA assistant check
All committers have signed the CLA.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@ghost
Copy link

ghost commented May 9, 2022

This was referenced May 12, 2022
@conan-center-bot

This comment has been minimized.

@jwillikers
Copy link
Contributor

@erikogenvik Possibly related to python/cpython#82624?

@conan-center-bot

This comment has been minimized.

destination=self._source_subfolder, strip_root=True)

@property
def _with_libffi(self):
# cpython 3.7.x on MSVC uses an ancient libffi 2.00-beta (which is not available at cci, and is API/ABI incompatible with current 3.2+)
return self._supports_modules \
and (self.settings.compiler != "Visual Studio" or tools.Version(self._version_number_only) >= "3.8")
and (not is_msvc(self) or Version(self._version_number_only) >= "3.8")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing the import. And looking at the code there's a bunch h of places its needed

@conan-center-bot

This comment has been minimized.

@github-actions
Copy link
Contributor

Hooks produced the following warnings for commit 9b44f82
cpython/3.8.12
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/extension/__pycache__/test_case_sensitivity.cpython-38.opt-2.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/source/__pycache__/test_source_encoding.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/data03/namespace/portion2/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/data03/namespace/portion1/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/import_/__pycache__/test_relative_imports.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/project1/parent/child/__pycache__/one.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/portion2/foo/__pycache__/two.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/project3/parent/child/__pycache__/three.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/project2/parent/child/__pycache__/two.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/module_and_namespace_package/__pycache__/a_test.cpython-38.opt-2.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/both_portions/foo/__pycache__/two.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/namespace_pkgs/portion1/foo/__pycache__/one.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_importlib/data01/subdirectory/__pycache__/__init__.cpython-38.opt-1.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_import/data/circular_imports/subpkg/__pycache__/subpackage2.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/test/test_import/data/circular_imports/__pycache__/from_cycle2.cpython-38.opt-2.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-38.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.
post_package(): WARN: [SHORT_PATHS USAGE (KB-H066)] The file './lib/python3.8/tkinter/test/test_tkinter/__pycache__/test_geometry_managers.cpython-38.opt-2.pyc' has a very long path and may exceed Windows max path length. Add 'short_paths = True' in your recipe.

@stale
Copy link

stale bot commented Nov 12, 2022

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Nov 12, 2022
@erikogenvik
Copy link
Author

It looks like my PR came at an inopportune time as Conan Center was in the process of moving to Conan V2, while at the same time this package experienced issues with building on MacOS.
So far this PR seems to be aligned with the V2 upgrade (much thanks to @uilianries) but there's still the issue of the failing MacOS builds. Unfortunately I myself don't have access to such a machine and thus have a hard time figuring out what's wrong. The last logs for the failed builds are at https://c3i.jfrog.io/c3i/misc/logs/pr/9891/15-configs/macos-clang/cpython/3.8.12//7a65905c9ac9d5e4c6409af9fa51bc0dc84a28a4-build.txt

Anyone on a MacOS machine that have the ability to help?

@stale stale bot removed the stale label Nov 15, 2022
@stale
Copy link

stale bot commented Dec 16, 2022

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Dec 16, 2022
@conan-center-bot

This comment has been minimized.

@conan-center-bot
Copy link
Collaborator

Conan v1 pipeline

Failure in build 17 (a72af89932af65edf64dbf2555917f09f4b82ef6):

  • cpython/3.9.7@:
    Didn't run or was cancelled before finishing

  • cpython/3.10.0@:
    Didn't run or was cancelled before finishing

  • cpython/3.7.12@:
    CI failed to create some packages (All logs)

    Logs for packageID 88535e4686ff6778c7f5821d883d510eb8b7c2d7:
    [settings]
    arch=x86_64
    build_type=Debug
    compiler=apple-clang
    compiler.libcxx=libc++
    compiler.version=12.0
    os=Macos
    [options]
    cpython:shared=False
    
    [...]
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(hamt.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(dynload_shlib.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(config.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(importdl.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(namespaceobject.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(getopt.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(unicodectype.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(asdl.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(bytes_methods.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(pyctype.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(dtoa.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(getbuildinfo.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(hashtable.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(pystrhex.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_abc.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_codecsmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_collectionsmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_functoolsmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_iomodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_localemodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_operator.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_sre.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_stat.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(symtablemodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_threadmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(_weakref.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(atexitmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(errnomodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(itertoolsmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(pwdmodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(timemodule.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(xxsubtype.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(zipimport.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(structmember.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(listnode.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(getcompiler.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(bufferedio.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(bytesio.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(fileio.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(iobase.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(textio.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(stringio.o)) was built for newer macOS version (12.0) than being linked (11.3)
    ld: warning: object file (/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib/libpython3.7dm.a(accu.o)) was built for newer macOS version (12.0) than being linked (11.3)
    Compiling with an SDK that doesn't seem to exist: /Applications/conan/xcode/12/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk
    Please check your Xcode installation
    error: $MACOSX_DEPLOYMENT_TARGET mismatch: now "11.3" but "12.0" during configure
    WARN: tcl/8.6.10: requirement zlib/1.2.12 overridden by tk/8.6.10 to zlib/1.2.11 
    ERROR: cpython/3.7.12 (test package): Error in build() method, line 127
    	self.run("{} {}".format(self.deps_user_info["cpython"].python, " ".join("\"{}\"".format(a) for a in setup_args)), run_environment=True)
    	ConanException: Error 1 while executing DYLD_LIBRARY_PATH="/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/openssl/1.1.1l/_/_/package/d98fae1010d1fb9e7f79a1e8a72bbf129d8660a2/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/expat/2.4.1/_/_/package/89b6a6a523756bfd8d35893e258556f20ab2eadf/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/libffi/3.2.1/_/_/package/d98fae1010d1fb9e7f79a1e8a72bbf129d8660a2/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/mpdecimal/2.4.2/_/_/package/d98fae1010d1fb9e7f79a1e8a72bbf129d8660a2/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/libxcrypt/4.4.25/_/_/package/d98fae1010d1fb9e7f79a1e8a72bbf129d8660a2/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/bzip2/1.0.8/_/_/package/7fc5f5b34b9038fbd81d8c4edd0e5d12d311b628/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/gdbm/1.19/_/_/package/9607b89e1f89b25937a7a4200d1eb0586faf6ecc/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/sqlite3/3.36.0/_/_/package/11158d4a312a2441dd918f49dc6e136c7070cbb7/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tk/8.6.10/_/_/package/9b050b4fd5c8e3df67b0fe0ac8d5916329d90420/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/ncurses/6.2/_/_/package/8ca61d867811b728dccaa4023f9af498aadd975f/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/xz_utils/5.2.5/_/_/package/d98fae1010d1fb9e7f79a1e8a72bbf129d8660a2/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/tdbcmysql1.1.1:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/itcl4.2.0:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/tdbcodbc1.1.1:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/tdbcpostgres1.1.1:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/tdbc1.1.1:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/thread2.8.5:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib/sqlite3.30.1.2:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/tcl/8.6.10/_/_/package/150778ad56d91e99abe6728021fb5e61699efb30/lib:/Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/zlib/1.2.11/_/_/package/d98fae1010d1fb9e7f79a1e8a72bbf129d8660a2/lib" DYLD_FRAMEWORK_PATH="" /Users/jenkins/w/prod/BuildSingleReference@3/.conan/data/cpython/3.7.12/_/_/package/88535e4686ff6778c7f5821d883d510eb8b7c2d7/bin/python3.7 "/Users/jenkins/w/prod/BuildSingleReference@3/conan-center-index/recipes/cpython/all/test_package/setup.py" "build" "--build-base" "/Users/jenkins/w/prod/BuildSingleReference@3/conan-center-index/recipes/cpython/all/test_package/build/a32d8d900046cda36a9442a93447c8031405df98" "--build-platlib" "/Users/jenkins/w/prod/BuildSingleReference@3/conan-center-index/recipes/cpython/all/test_package/build/a32d8d900046cda36a9442a93447c8031405df98/lib_setuptools" "--debug"
    
  • cpython/2.7.18@:
    Didn't run or was cancelled before finishing

  • cpython/3.8.12@:
    Didn't run or was cancelled before finishing


Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.

@stale
Copy link

stale bot commented Feb 11, 2023

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Feb 11, 2023
@stale
Copy link

stale bot commented Mar 18, 2023

This pull request has been automatically closed because it has not had recent activity. Thank you for your contributions.

@stale stale bot closed this Mar 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[package] cpython/3.10.0: build fails if SQLite3 is disabled
8 participants