Skip to content

Commit

Permalink
tiledb-py v0.31.1 (conda-forge#232)
Browse files Browse the repository at this point in the history
* updated v0.31.1

* MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.37.1, and conda-forge-pinning 2024.07.30.01.49.09

* Update for build system changes (from conda-forge#226)

* Restore license and tests location w/ sdist fix

* Allow newer cython

* pin cython>3

* typo

* Apply suggestions from code review

---------

Co-authored-by: John Blischak <[email protected]>
Co-authored-by: Isaiah Norton <[email protected]>
  • Loading branch information
3 people authored Jul 31, 2024
1 parent 3b3b888 commit fa28942
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions recipe/bld.bat

This file was deleted.

8 changes: 0 additions & 8 deletions recipe/build.sh

This file was deleted.

15 changes: 10 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "tiledb" %}
{% set version = "0.30.2" %}
{% set sha256 = "8a70e62b1cea6a1bba8afb1d36a635e9c5435db733944fb4e6d7493fa1d914a3" %}
{% set version = "0.31.1" %}
{% set sha256 = "7b9ddd32c4c7437111764645d8a042d603102a813c8b89addaf9a15bd40dd939" %}

package:
name: tiledb-py
Expand All @@ -12,6 +12,8 @@ source:
sha256: {{ sha256 }}

build:
script: TILEDB_PATH=${PREFIX} {{ PYTHON }} -m pip install --no-build-isolation --no-deps --ignore-installed -v . # [not win]
script: set "TILEDB_PATH=%LIBRARY_PREFIX%" && {{ PYTHON }} -m pip install --no-build-isolation --no-deps --ignore-installed -v . # [win]
number: 0
skip: true # [win32]
skip: true # [win and py2k]
Expand All @@ -21,19 +23,22 @@ requirements:
- {{ stdlib("c") }}
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- cython <3.0 # [build_platform != target_platform]
- cython >=3.0 # [build_platform != target_platform]
- numpy # [build_platform != target_platform]
- pybind11 # [build_platform != target_platform]
- cmake
- make
host:
- pip
- wheel
- setuptools
- setuptools_scm
- scikit-build-core
- python
- cython <3.0
- cython >=3.0
- numpy
- pybind11
- tiledb >=2.24.0,<2.25
- tiledb >=2.25.0,<2.26
run:
- python
- {{ pin_compatible('numpy') }}
Expand Down

0 comments on commit fa28942

Please sign in to comment.