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

ENH: update package version #34

Merged
merged 5 commits into from Mar 26, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .azure-pipelines/azure-pipelines-linux.yml

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

7 changes: 7 additions & 0 deletions .ci_support/linux_64_.yaml
@@ -1,3 +1,7 @@
c_stdlib:
- sysroot
c_stdlib_version:
- '2.12'
cdt_name:
- cos6
channel_sources:
Expand All @@ -6,3 +10,6 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
zip_keys:
- - c_stdlib_version
- cdt_name
2 changes: 2 additions & 0 deletions .ci_support/win_64_.yaml
@@ -1,3 +1,5 @@
c_stdlib:
- vs
channel_sources:
- conda-forge
channel_targets:
Expand Down
2 changes: 1 addition & 1 deletion .scripts/build_steps.sh

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

2 changes: 1 addition & 1 deletion .scripts/run_win_build.bat

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

13 changes: 7 additions & 6 deletions recipe/meta.yaml
@@ -1,13 +1,13 @@
{% set name = "arraylake" %}
{% set version = "0.9.4" %}
{% set version = "0.9.5" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/arraylake-{{ version }}.tar.gz
sha256: a3ea45141b1cc464214aae269d1e50189ea6852ca96802ed5d8a91f8e5ffd85f
sha256: ddcca0f4e8fde3458e0eddcd0bffa888c8b0416b21c229b03ec42abd2c570866

build:
noarch: python
Expand All @@ -19,12 +19,12 @@ build:

requirements:
host:
- python >=3.9,<3.12
- python >=3.9,<3.13
- poetry-core >=1.0.0
- poetry-dynamic-versioning
- pip
run:
- python >=3.8,<3.12
- python >=3.8,<3.13
- aiobotocore >=2.4,<3
- aioitertools >=0.11,<1
- boto3 >=1.24
Expand All @@ -40,9 +40,10 @@ requirements:
- rich >=12.6,<14.0
- ruamel.yaml >=0.17,<1.0
- structlog >=23.1,<24
- typer >=0.6,<1.0
- typer >=0.6.1,<1.0
- uvloop >=0.17,<1 # [unix]
- zarr >=2.14,<=2.16
- zarr >=2.14,<=2.18
- numcodecs !=0.12.0
- __unix # [unix]
- __win # [win]
- cachetools >=5.3
Expand Down