Skip to content

Commit

Permalink
do not add python_abi to runtime requirements
Browse files Browse the repository at this point in the history
python_abi is being added to runtime requirements becaue we have everything
here in requirements.build instead of splitting the host dependencies out

Doing that causes conda-build to apply all of the 'run_exports' requirements.

I don't think anything in riscv-tools links against the x86 python_abi. So,
removing this should allow users to bump the version of python without
needing to rebuild riscv-tools.

(cherry picked from commit 1bb56fb)
  • Loading branch information
timsnyder authored and mergify[bot] committed Mar 6, 2023
1 parent cc9236f commit d8e9f40
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ requirements:
- mpc
#- zlib
- file
ignore_run_exports:
# nothing links against libpython, the build scripts just don't work out
# of the box if you split the libs into build/host
- python_abi

test:
commands:
Expand Down

0 comments on commit d8e9f40

Please sign in to comment.