Skip to content

Commit

Permalink
Remove xdoctest & ignore libgcc for overlinking/overdepending che…
Browse files Browse the repository at this point in the history
…cks (#5471)
  • Loading branch information
kenodegard authored Sep 4, 2024
1 parent abb3f18 commit f702c3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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

0 comments on commit f702c3a

Please sign in to comment.