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

Bump bx-python to 0.12, fix pypi url #49231

Merged
merged 7 commits into from
Jul 15, 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
18 changes: 12 additions & 6 deletions recipes/bx-python/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{% set name = "bx-python" %}
{% set version = "0.11.0" %}
{% set sha256 = "2cf8872572817e0d36145cc2711889df5729987ffed4e51280da1e3c2ccb9429" %}
{% set version = "0.12.0" %}
{% set sha256 = "aac2405a7b6f0d74a0a38d0e589205ed4e5ecee12df23e2076d40d41cc8335c2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/bx-python-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/bx_python-{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 3
script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
number: 0
script:
- {{ PYTHON }} setup.py build_ext --force # [py<39]
- {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
run_exports:
- {{ pin_subpackage(name|lower, max_pin='x.x') }}

Expand All @@ -22,8 +24,10 @@ requirements:
host:
- python
- cython
- numpy # [py<39]
- numpy >=1.25 # [py>=39]
- pip
- numpy
- setuptools
- zlib
run:
- python
Expand Down Expand Up @@ -66,3 +70,5 @@ extra:
additional-platforms:
- linux-aarch64
- osx-arm64
recipe-maintainers:
- nsoranzo