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

Update to v0.7.0 #15

Merged
merged 6 commits into from
Feb 17, 2023
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
4 changes: 4 additions & 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.

6 changes: 6 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

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

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

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

16 changes: 16 additions & 0 deletions .ci_support/linux_64_python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
cdt_name:
- cos6
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.10.* *_cpython
target_platform:
- linux-64
16 changes: 16 additions & 0 deletions .ci_support/osx_64_python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.10.* *_cpython
target_platform:
- osx-64
16 changes: 16 additions & 0 deletions .ci_support/osx_arm64_python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
MACOSX_DEPLOYMENT_TARGET:
- '11.0'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
macos_machine:
- arm64-apple-darwin20.0.0
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.10.* *_cpython
target_platform:
- osx-arm64
12 changes: 12 additions & 0 deletions .ci_support/win_64_python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.10.* *_cpython
target_platform:
- win-64
28 changes: 28 additions & 0 deletions README.md

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

32 changes: 17 additions & 15 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,34 @@ source:

build:
# noarch: python
skip: true # [py>=310]
number: 0
skip: true # [py>=311]
number: 1
script: {{ PYTHON }} -m pip install ./tabular -vv
script_env:
- RELEASE=1

requirements:
build:
# - {{ compiler('cuda') }} # [linux and cuda_compiler_version != "None"]
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- cython # [build_platform != target_platform]
- numpy <1.24,>=1.21 # [build_platform != target_platform]
- numpy >=1.21,<1.27 # [build_platform != target_platform]
host:
- python # >=3.7,<3.10
- python # >=3.8,<3.11
- pip
run:
- python # >=3.7,<3.10
- numpy <1.24,>=1.21
- scipy <1.10.0,>=1.5.4
- pandas !=1.4.0,<1.6,>=1.2.5
- scikit-learn <1.2,>=1.0.0
- networkx <3.0,>=2.3
- pytorch <1.13,>=1.9 # [not win]
- lightgbm
- xgboost
- catboost
- fastai # [not win]
- python # >=3.8,<3.11
- numpy >=1.21,<1.27
- scipy >=1.5.4,<1.12
- pandas >=1.4.1,<1.6
- scikit-learn >=1.0,<1.3
- networkx >=2.3,<3.0
- pytorch >=1.9,<1.14 # [not win]
- lightgbm >=3.3,<3.4
- xgboost >=1.6,<1.8
- catboost >=1.0,<1.2
- fastai >=2.3.1,<2.8 # [not win]
- autogluon.core =={{ version }}
- autogluon.features =={{ version }}

Expand All @@ -48,6 +49,7 @@ test:
- python -c "from autogluon.tabular import __version__ as v; assert v == '{{ version }}', f'{v} != {{ version }}'"
requires:
- pip
# - pytorch =*=cuda* # [linux and cuda_compiler_version != "None"]

about:
home: https://pypi.org/project/autogluon.tabular
Expand Down