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

eventio v1.11.6 #29

Merged
merged 3 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .scripts/build_steps.sh

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

6 changes: 3 additions & 3 deletions .scripts/run_osx_build.sh

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

4 changes: 2 additions & 2 deletions .scripts/run_win_build.bat

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

15 changes: 8 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
{% set name = "eventio" %}
{% set version = "1.11.5" %}
{% set version = "1.11.6" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 65630e1e199f1e51b604b514f99b6a8900d49be599597c3b4c4ada0b3aa3ffc9
sha256: bb674a9bf89dd372f9d75c8c969874caffeb239a3c7ffb4920d7d3f1b64391cb

build:
number: 0
script: {{ PYTHON }} -m pip install . -vv
skip: true # [python_impl == 'pypy']
skip: true # [py<39]

requirements:
build:
- python # [build_platform != target_platform]
- python
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- numpy # [build_platform != target_platform]
- numpy >=1.25 # [build_platform != target_platform]
- {{ compiler('c') }}
- setuptools
host:
- python
- pip
- numpy
- numpy >=1.25
- cython
- pytest-runner
- corsikaio 0.3.*
- corsikaio >=0.3.3,<0.5a0
- setuptools
- setuptools_scm >=3.4
run:
- python
- {{ pin_compatible('numpy') }}
- numpy >=1.21
- corsikaio 0.3.*
- zstandard

Expand Down