Skip to content

Commit

Permalink
litdata v0.2.30 (#31)
Browse files Browse the repository at this point in the history
* updated v0.2.30

* MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.44.0, and conda-forge-pinning 2024.11.05.21.36.17

* Rename pypi.io to pypi.org

* Set python_min following CFEP-25

Using minimum python_requires defined at https://github.com/Lightning-AI/litdata/blob/v0.2.30/setup.py#L70. See details of CFEP-25 at conda-forge/conda-forge.github.io#2351 and https://conda-forge.org/docs/maintainer/knowledge_base/#noarch-python

---------

Co-authored-by: Wei Ji <[email protected]>
  • Loading branch information
regro-cf-autotick-bot and weiji14 authored Nov 6, 2024
1 parent 42112fc commit 17f524f
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .scripts/build_steps.sh

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

29 changes: 27 additions & 2 deletions azure-pipelines.yml

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

12 changes: 7 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{% set name = "litdata" %}
{% set version = "0.2.29" %}
{% set version = "0.2.30" %}
{% set python_min = python_min|default("3.8") %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/litdata-{{ version }}.tar.gz
sha256: fa2342b59e1b0fa58b3af74e49830833c4eb29c6b40fb68355a951510110e9ef
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/litdata-{{ version }}.tar.gz
sha256: 62ecce703f5368c91e75da2247a23d6c573aae8ca135ee69fcb3d173cfaa1613

build:
noarch: python
Expand All @@ -17,15 +18,15 @@ build:
requirements:
host:
- pip
- python >=3.8
- python {{ python_min }}.*
- setuptools
- wheel
run:
- boto3
- filelock
- lightning-utilities
- numpy
- python >=3.8
- python >={{ python_min }}
- pytorch
- requests

Expand All @@ -38,6 +39,7 @@ test:
- python -c "import numpy as np; from litdata.streaming.serializers import NoHeaderNumpySerializer; serializer = NoHeaderNumpySerializer(); assert serializer.can_serialize(np.ones((10,)))"
requires:
- pip
- python ={{ python_min }}

about:
home: https://github.com/Lightning-AI/litdata
Expand Down

0 comments on commit 17f524f

Please sign in to comment.