Skip to content

Commit 17f524f

Browse files
litdata v0.2.30 (#31)
* 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]>
1 parent 42112fc commit 17f524f

File tree

3 files changed

+41
-14
lines changed

3 files changed

+41
-14
lines changed

.scripts/build_steps.sh

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

azure-pipelines.yml

+27-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

recipe/meta.yaml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{% set name = "litdata" %}
2-
{% set version = "0.2.29" %}
2+
{% set version = "0.2.30" %}
3+
{% set python_min = python_min|default("3.8") %}
34

45
package:
56
name: {{ name|lower }}
67
version: {{ version }}
78

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

1213
build:
1314
noarch: python
@@ -17,15 +18,15 @@ build:
1718
requirements:
1819
host:
1920
- pip
20-
- python >=3.8
21+
- python {{ python_min }}.*
2122
- setuptools
2223
- wheel
2324
run:
2425
- boto3
2526
- filelock
2627
- lightning-utilities
2728
- numpy
28-
- python >=3.8
29+
- python >={{ python_min }}
2930
- pytorch
3031
- requests
3132

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

4244
about:
4345
home: https://github.com/Lightning-AI/litdata

0 commit comments

Comments
 (0)