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

Remove xdoctest & ignore libgcc for overlinking/overdepending checks #5471

Merged
merged 4 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions conda_build/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,11 @@ def check_overlinking_impl(
precs.append(pkg_vendored_dist)
ignore_list = utils.ensure_list(ignore_run_exports)
if subdir.startswith("linux"):
# libgcc-ng is the defaults & old conda-forge package name
ignore_list.append("libgcc-ng")
# conda-forge::libgcc-ng was renamed 08/27/2024
# see https://github.com/conda-forge/ctng-compilers-feedstock/pull/148
ignore_list.append("libgcc")

package_nature = {prec: library_nature(prec, run_prefix) for prec in precs}
lib_packages = {
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ addopts = [
# "--store-durations", # not available yet
"--strict-markers",
"--tb=native",
"--xdoctest-modules",
"--xdoctest-style=google",
"-vv",
]
doctest_optionflags = [
Expand Down
1 change: 0 additions & 1 deletion tests/requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
anaconda-client
conda-forge::xdoctest
conda-verify
contextlib2
coverage
Expand Down
Loading