Skip to content
Open
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
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-linux.yml

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

6 changes: 4 additions & 2 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
cdt_name:
- cos6
- conda
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
- quay.io/condaforge/linux-anvil-x86_64:alma9
python_min:
- '3.9'
4 changes: 2 additions & 2 deletions .gitattributes

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

2 changes: 1 addition & 1 deletion .github/CODEOWNERS

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

18 changes: 13 additions & 5 deletions .scripts/build_steps.sh

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

1 change: 0 additions & 1 deletion README.md

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.

16 changes: 13 additions & 3 deletions build-locally.py

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

9 changes: 5 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ package:
version: {{ version }}

source:
url: https://pypi.io/packages/source/f/featuretools/featuretools-{{ version }}.tar.gz
url: https://pypi.org/packages/source/f/featuretools/featuretools-{{ version }}.tar.gz
sha256: 01bfb17fcc1715b4c3623c7bc94a8982122c4a0fa03350ed478601bb81f90155

build:
noarch: python
number: 0
number: 1
script: {{ PYTHON }} -m pip install . --no-deps -vv

requirements:
host:
- pip
- python >=3.9.*
- python {{ python_min }}
run:
- cloudpickle >=1.5.0
- holidays >=0.17
- numpy >=1.25.0
- packaging >=20.0
- pandas >=2.0.0
- psutil >=5.7.0
- python >=3.9.*
- python >={{ python_min }}
- scipy >=1.10.0
- tqdm >=4.66.3
- woodwork >=0.28.0
Expand All @@ -50,6 +50,7 @@ test:
- urllib3 >=1.26.18
- dask >= 2023.2.0
- distributed >= 2023.2.0
- python {{ python_min }}
source_files:
- featuretools/*
- pyproject.toml
Expand Down