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

ensure run-export from xorg-libx11 gets ignored correctly everywhere #721

Merged
merged 2 commits into from
Sep 30, 2024
Merged
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
8 changes: 6 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% set ver2 = '.'.join(version.split('.')[0:2]) %}
{% set ver2nd = ''.join(version.split('.')[0:2]) %}
{% set ver3nd = ''.join(version.split('.')[0:3]) %}
{% set build_number = 1 %}
{% set build_number = 2 %}

# this makes the linter happy
{% set channel_targets = channel_targets or 'conda-forge main' %}
Expand Down Expand Up @@ -88,7 +88,7 @@ outputs:
# Copy rather than link.
no_link:
- DLLs/_ctypes.pyd # [win]
ignore_run_exports_from: # [unix]
ignore_run_exports_from:
# C++ only installed so CXX is defined for distutils/sysconfig.
- {{ compiler('cxx') }} # [unix]
# this is just to get the headers needed for tk.h, but is unused
Expand Down Expand Up @@ -185,7 +185,11 @@ outputs:
- python_abi {{ ver2 }}.* *_{{ abi_tag }}
test:
downstreams:
{% if freethreading == "yes" %}
- cython >=3.1.0.a0
{% else %}
- cython
{% endif %}
- setuptools
requires:
- ripgrep
Expand Down