Skip to content

Commit

Permalink
Set python_min following CFEP-25
Browse files Browse the repository at this point in the history
  • Loading branch information
weiji14 committed Nov 6, 2024
1 parent 74ce9cb commit 8836bc8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% set name = "litdata" %}
{% set version = "0.2.30" %}
{% set python_min = python_min|default("3.8") %}

package:
name: {{ name|lower }}
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 8836bc8

Please sign in to comment.