GithubHelp home page GithubHelp logo

conda-forge / sktime-feedstock Goto Github PK

View Code? Open in Web Editor NEW
6.0 8.0 17.0 201 KB

A conda-smithy repository for sktime.

License: BSD 3-Clause "New" or "Revised" License

Shell 49.59% Batchfile 50.41%

sktime-feedstock's Introduction

About sktime-suite-feedstock

Feedstock license: BSD-3-Clause

Home: https://github.com/sktime/sktime

Package license: BSD-3-Clause

Summary: A unified framework for machine learning with time series

Development: https://github.com/sktime/sktime

Documentation: https://www.sktime.net/en/latest/

Current build status

Azure
VariantStatus
linux_64_python3.10.____cpython variant
linux_64_python3.11.____cpython variant
linux_64_python3.12.____cpython variant
linux_64_python3.9.____cpython variant
linux_aarch64_python3.10.____cpython variant
linux_aarch64_python3.11.____cpython variant
linux_aarch64_python3.12.____cpython variant
linux_aarch64_python3.9.____cpython variant
osx_64_python3.10.____cpython variant
osx_64_python3.11.____cpython variant
osx_64_python3.12.____cpython variant
osx_64_python3.9.____cpython variant
osx_arm64_python3.10.____cpython variant
osx_arm64_python3.11.____cpython variant
osx_arm64_python3.12.____cpython variant
osx_arm64_python3.9.____cpython variant
win_64_python3.10.____cpython variant
win_64_python3.11.____cpython variant
win_64_python3.12.____cpython variant
win_64_python3.9.____cpython variant

Current release info

Name Downloads Version Platforms
Conda Recipe Conda Downloads Conda Version Conda Platforms
Conda Recipe Conda Downloads Conda Version Conda Platforms

Installing sktime-suite

Installing sktime-suite from the conda-forge channel can be achieved by adding conda-forge to your channels with:

conda config --add channels conda-forge
conda config --set channel_priority strict

Once the conda-forge channel has been enabled, sktime, sktime-all-extras can be installed with conda:

conda install sktime sktime-all-extras

or with mamba:

mamba install sktime sktime-all-extras

It is possible to list all of the versions of sktime available on your platform with conda:

conda search sktime --channel conda-forge

or with mamba:

mamba search sktime --channel conda-forge

Alternatively, mamba repoquery may provide more information:

# Search all versions available on your platform:
mamba repoquery search sktime --channel conda-forge

# List packages depending on `sktime`:
mamba repoquery whoneeds sktime --channel conda-forge

# List dependencies of `sktime`:
mamba repoquery depends sktime --channel conda-forge

About conda-forge

Powered by NumFOCUS

conda-forge is a community-led conda channel of installable packages. In order to provide high-quality builds, the process has been automated into the conda-forge GitHub organization. The conda-forge organization contains one repository for each of the installable packages. Such a repository is known as a feedstock.

A feedstock is made up of a conda recipe (the instructions on what and how to build the package) and the necessary configurations for automatic building using freely available continuous integration services. Thanks to the awesome service provided by Azure, GitHub, CircleCI, AppVeyor, Drone, and TravisCI it is possible to build and upload installable packages to the conda-forge anaconda.org channel for Linux, Windows and OSX respectively.

To manage the continuous integration and simplify feedstock maintenance conda-smithy has been developed. Using the conda-forge.yml within this repository, it is possible to re-render all of this feedstock's supporting files (e.g. the CI configuration files) with conda smithy rerender.

For more information please check the conda-forge documentation.

Terminology

feedstock - the conda recipe (raw material), supporting scripts and CI configuration.

conda-smithy - the tool which helps orchestrate the feedstock. Its primary use is in the construction of the CI .yml files and simplify the management of many feedstocks.

conda-forge - the place where the feedstock and smithy live and work to produce the finished article (built conda distributions)

Updating sktime-suite-feedstock

If you would like to improve the sktime-suite recipe or build a new package version, please fork this repository and submit a PR. Upon submission, your changes will be run on the appropriate platforms to give the reviewer an opportunity to confirm that the changes result in a successful build. Once merged, the recipe will be re-built and uploaded automatically to the conda-forge channel, whereupon the built conda packages will be available for everybody to install and use from the conda-forge channel. Note that all branches in the conda-forge/sktime-suite-feedstock are immediately built and any created packages are uploaded, so PRs should be based on branches in forks and branches in the main repository should only be used to build distinct package versions.

In order to produce a uniquely identifiable distribution:

  • If the version of a package is not being increased, please add or increase the build/number.
  • If the version of a package is being increased, please remember to return the build/number back to 0.

Feedstock Maintainers

sktime-feedstock's People

Contributors

aiwalter avatar carterbox avatar cf-blacksmithy avatar christopherbunn avatar conda-forge-admin avatar conda-forge-curator[bot] avatar dhirschfeld avatar fkiraly avatar freddyaboulton avatar giswqs avatar github-actions[bot] avatar glemaitre avatar lmmentel avatar mloning avatar regro-cf-autotick-bot avatar rishikeshavan avatar yarnabrina avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sktime-feedstock's Issues

Can it be compatible with more numpy and scipy versions?

Solution to issue cannot be found in the documentation.

  • I checked the documentation.

Issue

Hi, dear maintainers.

sktime is a fairly good project to deal with time series problems. It is used in my project HyperTS, and an error is reported in the process of publishing my package to CONDA forge by executing command pip check:

sktime 0.10.1 has requirement numpy<1.22,>=1.21.0, but you have numpy 1.22.3.
sktime 0.10.1 has requirement scipy<1.8.0, but you have scipy 1.8.0.

I noticed that sktime==0.10.1 limited the upper bound of numpy and scipy:
https://github.com/alan-turing-institute/sktime/blob/b6c7153b4b0fbe601ab2308c53a408f07bc435b2/pyproject.toml#L48-L52

This may conflict with other packages, I used command pip-compile to check the dependencies of my project as follows:

...
scipy==1.7.3
    # via
    #   featuretools
    #   hypernets
    #   lightgbm
    #   scikit-learn
    #   seaborn
    #   sktime
    #   statsmodels
numpy==1.22.3
    # via
    #   -r ./requirements.txt
    #   cmdstanpy
    #   dask
    #   featuretools
    #   hypernets
    #   lightgbm
    #   matplotlib
    #   numba
    #   pandas
    #   patsy
    #   prophet
    #   pyarrow
    #   pystan
    #   scikit-learn
    #   scipy
    #   seaborn
    #   sktime
    #   statsmodels
...

It shows that many packages depend on numpy and scipy, can it be compatible with more numpy and scipy versions to better coexist with other packages? Or is there any special reason to use numpy<1.23 and scipy<1.8 ? I mean, removing the upper bound of the version makes the dependency look like:

numpy>=1.21.0
scipy>x.x.x

Is this feasible? Look forward to your reply

Ref:

Installed packages

_libgcc_mutex:                 0.1-conda_forge              conda-forge
    _openmp_mutex:                 4.5-1_gnu                    conda-forge
    abseil-cpp:                    20210324.2-h9c3ff4c_0        conda-forge
    arrow-cpp:                     7.0.0-py39h6409b3a_2_cpu     conda-forge
    arviz:                         0.11.4-pyhd8ed1ab_0          conda-forge
    asttokens:                     2.0.5-pyhd8ed1ab_0           conda-forge
    attrs:                         21.4.0-pyhd8ed1ab_0          conda-forge
    aws-c-cal:                     0.5.11-h95a6274_0            conda-forge
    aws-c-common:                  0.6.2-h7f98852_0             conda-forge
    aws-c-event-stream:            0.2.7-h3541f99_13            conda-forge
    aws-c-io:                      0.10.5-hfb6a706_0            conda-forge
    aws-checksums:                 0.1.11-ha31a3da_7            conda-forge
    aws-sdk-cpp:                   1.8.186-hb4091e7_3           conda-forge
    backcall:                      0.2.0-pyh9f0ad1d_0           conda-forge
    backports:                     1.0-py_2                     conda-forge
    backports.functools_lru_cache: 1.6.4-pyhd8ed1ab_0           conda-forge
    bcrypt:                        3.2.0-py39h3811e60_2         conda-forge
    binutils_impl_linux-64:        2.36.1-h193b22a_2            conda-forge
    binutils_linux-64:             2.36-hf3e587d_7              conda-forge
    bokeh:                         2.4.2-py39hf3d152e_0         conda-forge
    brotli:                        1.0.9-h7f98852_6             conda-forge
    brotli-bin:                    1.0.9-h7f98852_6             conda-forge
    brotlipy:                      0.7.0-py39h3811e60_1003      conda-forge
    bzip2:                         1.0.8-h7f98852_4             conda-forge
    c-ares:                        1.18.1-h7f98852_0            conda-forge
    ca-certificates:               2021.10.8-ha878542_0         conda-forge
    certifi:                       2021.10.8-py39hf3d152e_1     conda-forge
    cffi:                          1.15.0-py39h4bc2ebd_0        conda-forge

Environment info

conda-build version : 3.21.8
         python version : 3.9.10.final.0
       virtual packages : __linux=5.11.0=0
                          __glibc=2.17=0
                          __unix=0=0
                          __archspec=1=x86_64
       base environment : /opt/conda  (writable)
      conda av data dir : /opt/conda/etc/conda
  conda av metadata url : None
           channel URLs : https://conda.anaconda.org/conda-forge/linux-64
                          https://conda.anaconda.org/conda-forge/noarch
          package cache : /opt/conda/pkgs
                          /home/conda/.conda/pkgs
       envs directories : /opt/conda/envs
                          /home/conda/.conda/envs
               platform : linux-64
             user-agent : conda/4.11.0 requests/2.27.1 CPython/3.9.10 Linux/5.11.0-1028-azure centos/7.9.2009 glibc/2.17
                UID:GID : 1001:1001
             netrc file : None
           offline mode : False

Directing issues to sktime main repo?

Comment:

Should this issue tracker not direct bug reports and issues to the main sktime repo?

We probably missed this issue here
#31
because no one was watching this one?
(which makes sense since it's the repo of a secondary distribution channel)

0.12.1 has not been released

Solution to issue cannot be found in the documentation.

  • I checked the documentation.

Issue

issue to track investigation of 0.12.1 release that has not happened

Installed packages

about the feedstock

Environment info

about the feedstock

Missing packages in setuptools config?

Solution to issue cannot be found in the documentation.

  • I checked the documentation.

Issue

In the latest build I see a lot of warnings about packages not being specified in the setuptools config:

โฏ rg 'importable package' log.txt
004:2022-12-01T21:46:04.6995925Z       Python recognizes 'sktime.datasets.data' as an importable package,
030:2022-12-01T21:46:04.7055018Z       Python recognizes 'sktime.datasets.data.ACSF1' as an importable package,
056:2022-12-01T21:46:04.7131936Z       Python recognizes 'sktime.datasets.data.Airline' as an importable package,
082:2022-12-01T21:46:04.7159890Z       Python recognizes 'sktime.datasets.data.ArrowHead' as an importable package,
108:2022-12-01T21:46:04.7221839Z       Python recognizes 'sktime.datasets.data.BasicMotions' as an importable package,
134:2022-12-01T21:46:04.7289317Z       Python recognizes 'sktime.datasets.data.Covid3Month' as an importable package,
160:2022-12-01T21:46:04.7372469Z       Python recognizes 'sktime.datasets.data.GunPoint' as an importable package,
186:2022-12-01T21:46:04.7502846Z       Python recognizes 'sktime.datasets.data.ItalyPowerDemand' as an importable package,
212:2022-12-01T21:46:04.7615736Z       Python recognizes 'sktime.datasets.data.JapaneseVowels' as an importable package,
238:2022-12-01T21:46:04.7662511Z       Python recognizes 'sktime.datasets.data.Longley' as an importable package,
264:2022-12-01T21:46:04.7769050Z       Python recognizes 'sktime.datasets.data.Lynx' as an importable package,
290:2022-12-01T21:46:04.7790426Z       Python recognizes 'sktime.datasets.data.OSULeaf' as an importable package,
316:2022-12-01T21:46:04.7858312Z       Python recognizes 'sktime.datasets.data.PBS_dataset' as an importable package,
342:2022-12-01T21:46:04.7932512Z       Python recognizes 'sktime.datasets.data.PLAID' as an importable package,
368:2022-12-01T21:46:04.7957514Z       Python recognizes 'sktime.datasets.data.ShampooSales' as an importable package,
394:2022-12-01T21:46:04.8127272Z       Python recognizes 'sktime.datasets.data.UnitTest' as an importable package,
420:2022-12-01T21:46:04.8212588Z       Python recognizes 'sktime.datasets.data.Uschange' as an importable package,
446:2022-12-01T21:46:04.8234338Z       Python recognizes 'sktime.datasets.data.segmentation' as an importable package,
472:2022-12-01T21:46:04.8298764Z       Python recognizes 'sktime.datasets.data.solar' as an importable package,
 2022-12-01T21:46:04.6993083Z       ############################
2022-12-01T21:46:04.6994352Z       # Package would be ignored #
2022-12-01T21:46:04.6994608Z       ############################
2022-12-01T21:46:04.6995925Z       Python recognizes 'sktime.datasets.data' as an importable package,
2022-12-01T21:46:04.6997361Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.6997607Z 
2022-12-01T21:46:04.6998100Z       'sktime.datasets.data' has been automatically added to the distribution only
2022-12-01T21:46:04.6998517Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.6999676Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.6999942Z 
2022-12-01T21:46:04.7009806Z       Please make sure that 'sktime.datasets.data' is included as a package by using
2022-12-01T21:46:04.7010964Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7011575Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7011983Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7013114Z 
2022-12-01T21:46:04.7013418Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7013749Z       documentation page.
2022-12-01T21:46:04.7046931Z 
2022-12-01T21:46:04.7047207Z 
2022-12-01T21:46:04.7047511Z   !!
2022-12-01T21:46:04.7047652Z 
2022-12-01T21:46:04.7048218Z     check.warn(importable)
2022-12-01T21:46:04.7050619Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.ACSF1' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7052315Z       !!
2022-12-01T21:46:04.7052449Z 
2022-12-01T21:46:04.7052573Z 
2022-12-01T21:46:04.7052907Z       ############################
2022-12-01T21:46:04.7053212Z       # Package would be ignored #
2022-12-01T21:46:04.7054462Z       ############################
2022-12-01T21:46:04.7055018Z       Python recognizes 'sktime.datasets.data.ACSF1' as an importable package,
2022-12-01T21:46:04.7056323Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7056553Z 
2022-12-01T21:46:04.7058075Z       'sktime.datasets.data.ACSF1' has been automatically added to the distribution only
2022-12-01T21:46:04.7058527Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7058936Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7059145Z 
2022-12-01T21:46:04.7060515Z       Please make sure that 'sktime.datasets.data.ACSF1' is included as a package by using
2022-12-01T21:46:04.7061919Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7062371Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7062732Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7062892Z 
2022-12-01T21:46:04.7063742Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7069874Z       documentation page.
2022-12-01T21:46:04.7070803Z 
2022-12-01T21:46:04.7075097Z 
2022-12-01T21:46:04.7076633Z   !!
2022-12-01T21:46:04.7081599Z 
2022-12-01T21:46:04.7086653Z     check.warn(importable)
2022-12-01T21:46:04.7126958Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.Airline' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7129016Z       !!
2022-12-01T21:46:04.7129175Z 
2022-12-01T21:46:04.7129314Z 
2022-12-01T21:46:04.7129542Z       ############################
2022-12-01T21:46:04.7130201Z       # Package would be ignored #
2022-12-01T21:46:04.7131383Z       ############################
2022-12-01T21:46:04.7131936Z       Python recognizes 'sktime.datasets.data.Airline' as an importable package,
2022-12-01T21:46:04.7132357Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7133196Z 
2022-12-01T21:46:04.7133861Z       'sktime.datasets.data.Airline' has been automatically added to the distribution only
2022-12-01T21:46:04.7134349Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7135732Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7135955Z 
2022-12-01T21:46:04.7137102Z       Please make sure that 'sktime.datasets.data.Airline' is included as a package by using
2022-12-01T21:46:04.7137611Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7138157Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7139474Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7139637Z 
2022-12-01T21:46:04.7139937Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7140872Z       documentation page.
2022-12-01T21:46:04.7141062Z 
2022-12-01T21:46:04.7141160Z 
2022-12-01T21:46:04.7141351Z   !!
2022-12-01T21:46:04.7141601Z 
2022-12-01T21:46:04.7141876Z     check.warn(importable)
2022-12-01T21:46:04.7144809Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.ArrowHead' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7150654Z       !!
2022-12-01T21:46:04.7150851Z 
2022-12-01T21:46:04.7150988Z 
2022-12-01T21:46:04.7151207Z       ############################
2022-12-01T21:46:04.7151473Z       # Package would be ignored #
2022-12-01T21:46:04.7158506Z       ############################
2022-12-01T21:46:04.7159890Z       Python recognizes 'sktime.datasets.data.ArrowHead' as an importable package,
2022-12-01T21:46:04.7204826Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7206745Z 
2022-12-01T21:46:04.7207459Z       'sktime.datasets.data.ArrowHead' has been automatically added to the distribution only
2022-12-01T21:46:04.7207929Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7209129Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7209472Z 
2022-12-01T21:46:04.7211274Z       Please make sure that 'sktime.datasets.data.ArrowHead' is included as a package by using
2022-12-01T21:46:04.7211757Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7212171Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7212536Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7212697Z 
2022-12-01T21:46:04.7212987Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7213973Z       documentation page.
2022-12-01T21:46:04.7214116Z 
2022-12-01T21:46:04.7214228Z 
2022-12-01T21:46:04.7214544Z   !!
2022-12-01T21:46:04.7214658Z 
2022-12-01T21:46:04.7215060Z     check.warn(importable)
2022-12-01T21:46:04.7217414Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.BasicMotions' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7219115Z       !!
2022-12-01T21:46:04.7219273Z 
2022-12-01T21:46:04.7219384Z 
2022-12-01T21:46:04.7219728Z       ############################
2022-12-01T21:46:04.7220040Z       # Package would be ignored #
2022-12-01T21:46:04.7220468Z       ############################
2022-12-01T21:46:04.7221839Z       Python recognizes 'sktime.datasets.data.BasicMotions' as an importable package,
2022-12-01T21:46:04.7222289Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7222490Z 
2022-12-01T21:46:04.7222989Z       'sktime.datasets.data.BasicMotions' has been automatically added to the distribution only
2022-12-01T21:46:04.7224055Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7224530Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7224931Z 
2022-12-01T21:46:04.7226726Z       Please make sure that 'sktime.datasets.data.BasicMotions' is included as a package by using
2022-12-01T21:46:04.7227197Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7227602Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7230586Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7233885Z 
2022-12-01T21:46:04.7239930Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7245479Z       documentation page.
2022-12-01T21:46:04.7250681Z 
2022-12-01T21:46:04.7254834Z 
2022-12-01T21:46:04.7259906Z   !!
2022-12-01T21:46:04.7264712Z 
2022-12-01T21:46:04.7284295Z     check.warn(importable)
2022-12-01T21:46:04.7286095Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.Covid3Month' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7287317Z       !!
2022-12-01T21:46:04.7287569Z 
2022-12-01T21:46:04.7287769Z 
2022-12-01T21:46:04.7288061Z       ############################
2022-12-01T21:46:04.7288397Z       # Package would be ignored #
2022-12-01T21:46:04.7288715Z       ############################
2022-12-01T21:46:04.7289317Z       Python recognizes 'sktime.datasets.data.Covid3Month' as an importable package,
2022-12-01T21:46:04.7289827Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7290103Z 
2022-12-01T21:46:04.7296709Z       'sktime.datasets.data.Covid3Month' has been automatically added to the distribution only
2022-12-01T21:46:04.7303648Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7310626Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7317730Z 
2022-12-01T21:46:04.7324972Z       Please make sure that 'sktime.datasets.data.Covid3Month' is included as a package by using
2022-12-01T21:46:04.7331482Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7364980Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7365698Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7365958Z 
2022-12-01T21:46:04.7366329Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7366923Z       documentation page.
2022-12-01T21:46:04.7367122Z 
2022-12-01T21:46:04.7367291Z 
2022-12-01T21:46:04.7367557Z   !!
2022-12-01T21:46:04.7367731Z 
2022-12-01T21:46:04.7368035Z     check.warn(importable)
2022-12-01T21:46:04.7369544Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.GunPoint' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7370581Z       !!
2022-12-01T21:46:04.7370761Z 
2022-12-01T21:46:04.7370933Z 
2022-12-01T21:46:04.7371225Z       ############################
2022-12-01T21:46:04.7371554Z       # Package would be ignored #
2022-12-01T21:46:04.7371894Z       ############################
2022-12-01T21:46:04.7372469Z       Python recognizes 'sktime.datasets.data.GunPoint' as an importable package,
2022-12-01T21:46:04.7372971Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7373238Z 
2022-12-01T21:46:04.7379019Z       'sktime.datasets.data.GunPoint' has been automatically added to the distribution only
2022-12-01T21:46:04.7384533Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7389939Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7395028Z 
2022-12-01T21:46:04.7400861Z       Please make sure that 'sktime.datasets.data.GunPoint' is included as a package by using
2022-12-01T21:46:04.7406618Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7411996Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7417342Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7422340Z 
2022-12-01T21:46:04.7427626Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7432919Z       documentation page.
2022-12-01T21:46:04.7437876Z 
2022-12-01T21:46:04.7443030Z 
2022-12-01T21:46:04.7448260Z   !!
2022-12-01T21:46:04.7453261Z 
2022-12-01T21:46:04.7458551Z     check.warn(importable)
2022-12-01T21:46:04.7465388Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.ItalyPowerDemand' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7471613Z       !!
2022-12-01T21:46:04.7476978Z 
2022-12-01T21:46:04.7482415Z 
2022-12-01T21:46:04.7491132Z       ############################
2022-12-01T21:46:04.7491684Z       # Package would be ignored #
2022-12-01T21:46:04.7496779Z       ############################
2022-12-01T21:46:04.7502846Z       Python recognizes 'sktime.datasets.data.ItalyPowerDemand' as an importable package,
2022-12-01T21:46:04.7508448Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7513558Z 
2022-12-01T21:46:04.7519290Z       'sktime.datasets.data.ItalyPowerDemand' has been automatically added to the distribution only
2022-12-01T21:46:04.7524962Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7530724Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7535696Z 
2022-12-01T21:46:04.7541518Z       Please make sure that 'sktime.datasets.data.ItalyPowerDemand' is included as a package by using
2022-12-01T21:46:04.7546984Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7552591Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7557908Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7562632Z 
2022-12-01T21:46:04.7567874Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7572956Z       documentation page.
2022-12-01T21:46:04.7608026Z 
2022-12-01T21:46:04.7608496Z 
2022-12-01T21:46:04.7609276Z   !!
2022-12-01T21:46:04.7609465Z 
2022-12-01T21:46:04.7610153Z     check.warn(importable)
2022-12-01T21:46:04.7611719Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.JapaneseVowels' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7612755Z       !!
2022-12-01T21:46:04.7612954Z 
2022-12-01T21:46:04.7613128Z 
2022-12-01T21:46:04.7613816Z       ############################
2022-12-01T21:46:04.7614459Z       # Package would be ignored #
2022-12-01T21:46:04.7614879Z       ############################
2022-12-01T21:46:04.7615736Z       Python recognizes 'sktime.datasets.data.JapaneseVowels' as an importable package,
2022-12-01T21:46:04.7617265Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7617650Z 
2022-12-01T21:46:04.7618350Z       'sktime.datasets.data.JapaneseVowels' has been automatically added to the distribution only
2022-12-01T21:46:04.7619177Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7619972Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7620358Z 
2022-12-01T21:46:04.7621699Z       Please make sure that 'sktime.datasets.data.JapaneseVowels' is included as a package by using
2022-12-01T21:46:04.7622364Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7622908Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7624955Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7644517Z 
2022-12-01T21:46:04.7645217Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7645877Z       documentation page.
2022-12-01T21:46:04.7646525Z 
2022-12-01T21:46:04.7646810Z 
2022-12-01T21:46:04.7648173Z   !!
2022-12-01T21:46:04.7650469Z 
2022-12-01T21:46:04.7652054Z     check.warn(importable)
2022-12-01T21:46:04.7655655Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.Longley' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7658790Z       !!
2022-12-01T21:46:04.7658925Z 
2022-12-01T21:46:04.7659032Z 
2022-12-01T21:46:04.7659254Z       ############################
2022-12-01T21:46:04.7660215Z       # Package would be ignored #
2022-12-01T21:46:04.7660865Z       ############################
2022-12-01T21:46:04.7662511Z       Python recognizes 'sktime.datasets.data.Longley' as an importable package,
2022-12-01T21:46:04.7672660Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7673095Z 
2022-12-01T21:46:04.7674623Z       'sktime.datasets.data.Longley' has been automatically added to the distribution only
2022-12-01T21:46:04.7683603Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7684304Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7685394Z 
2022-12-01T21:46:04.7706343Z       Please make sure that 'sktime.datasets.data.Longley' is included as a package by using
2022-12-01T21:46:04.7708103Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7708615Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7709923Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7711142Z 
2022-12-01T21:46:04.7711556Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7711960Z       documentation page.
2022-12-01T21:46:04.7712171Z 
2022-12-01T21:46:04.7712914Z 
2022-12-01T21:46:04.7713367Z   !!
2022-12-01T21:46:04.7713559Z 
2022-12-01T21:46:04.7714812Z     check.warn(importable)
2022-12-01T21:46:04.7717045Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.Lynx' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7722679Z       !!
2022-12-01T21:46:04.7723698Z 
2022-12-01T21:46:04.7723923Z 
2022-12-01T21:46:04.7725199Z       ############################
2022-12-01T21:46:04.7725560Z       # Package would be ignored #
2022-12-01T21:46:04.7766990Z       ############################
2022-12-01T21:46:04.7769050Z       Python recognizes 'sktime.datasets.data.Lynx' as an importable package,
2022-12-01T21:46:04.7770505Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7770781Z 
2022-12-01T21:46:04.7771374Z       'sktime.datasets.data.Lynx' has been automatically added to the distribution only
2022-12-01T21:46:04.7772516Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7773212Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7773647Z 
2022-12-01T21:46:04.7775110Z       Please make sure that 'sktime.datasets.data.Lynx' is included as a package by using
2022-12-01T21:46:04.7775631Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7776104Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7777240Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7777618Z 
2022-12-01T21:46:04.7778268Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7779526Z       documentation page.
2022-12-01T21:46:04.7779736Z 
2022-12-01T21:46:04.7779912Z 
2022-12-01T21:46:04.7780180Z   !!
2022-12-01T21:46:04.7780347Z 
2022-12-01T21:46:04.7781256Z     check.warn(importable)
2022-12-01T21:46:04.7783828Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.OSULeaf' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7786609Z       !!
2022-12-01T21:46:04.7786825Z 
2022-12-01T21:46:04.7786994Z 
2022-12-01T21:46:04.7787289Z       ############################
2022-12-01T21:46:04.7788222Z       # Package would be ignored #
2022-12-01T21:46:04.7788724Z       ############################
2022-12-01T21:46:04.7790426Z       Python recognizes 'sktime.datasets.data.OSULeaf' as an importable package,
2022-12-01T21:46:04.7791625Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7792079Z 
2022-12-01T21:46:04.7793672Z       'sktime.datasets.data.OSULeaf' has been automatically added to the distribution only
2022-12-01T21:46:04.7794980Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7795657Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7796930Z 
2022-12-01T21:46:04.7797572Z       Please make sure that 'sktime.datasets.data.OSULeaf' is included as a package by using
2022-12-01T21:46:04.7800957Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7807701Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7809004Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7814072Z 
2022-12-01T21:46:04.7815265Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7846434Z       documentation page.
2022-12-01T21:46:04.7846836Z 
2022-12-01T21:46:04.7847013Z 
2022-12-01T21:46:04.7848042Z   !!
2022-12-01T21:46:04.7848229Z 
2022-12-01T21:46:04.7848699Z     check.warn(importable)
2022-12-01T21:46:04.7851944Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.PBS_dataset' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7853993Z       !!
2022-12-01T21:46:04.7854881Z 
2022-12-01T21:46:04.7855063Z 
2022-12-01T21:46:04.7855512Z       ############################
2022-12-01T21:46:04.7856762Z       # Package would be ignored #
2022-12-01T21:46:04.7857101Z       ############################
2022-12-01T21:46:04.7858312Z       Python recognizes 'sktime.datasets.data.PBS_dataset' as an importable package,
2022-12-01T21:46:04.7859949Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7860272Z 
2022-12-01T21:46:04.7861553Z       'sktime.datasets.data.PBS_dataset' has been automatically added to the distribution only
2022-12-01T21:46:04.7862273Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7863754Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7864042Z 
2022-12-01T21:46:04.7865318Z       Please make sure that 'sktime.datasets.data.PBS_dataset' is included as a package by using
2022-12-01T21:46:04.7867002Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7868272Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7868886Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7869139Z 
2022-12-01T21:46:04.7870474Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7871431Z       documentation page.
2022-12-01T21:46:04.7871713Z 
2022-12-01T21:46:04.7875028Z 
2022-12-01T21:46:04.7880590Z   !!
2022-12-01T21:46:04.7881560Z 
2022-12-01T21:46:04.7890587Z     check.warn(importable)
2022-12-01T21:46:04.7926374Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.PLAID' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7928365Z       !!
2022-12-01T21:46:04.7928760Z 
2022-12-01T21:46:04.7928986Z 
2022-12-01T21:46:04.7930294Z       ############################
2022-12-01T21:46:04.7930675Z       # Package would be ignored #
2022-12-01T21:46:04.7931646Z       ############################
2022-12-01T21:46:04.7932512Z       Python recognizes 'sktime.datasets.data.PLAID' as an importable package,
2022-12-01T21:46:04.7934141Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7935137Z 
2022-12-01T21:46:04.7936831Z       'sktime.datasets.data.PLAID' has been automatically added to the distribution only
2022-12-01T21:46:04.7937397Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7938538Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7938960Z 
2022-12-01T21:46:04.7940513Z       Please make sure that 'sktime.datasets.data.PLAID' is included as a package by using
2022-12-01T21:46:04.7941698Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.7942357Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.7943750Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.7943993Z 
2022-12-01T21:46:04.7944910Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.7945410Z       documentation page.
2022-12-01T21:46:04.7945749Z 
2022-12-01T21:46:04.7945913Z 
2022-12-01T21:46:04.7947141Z   !!
2022-12-01T21:46:04.7947314Z 
2022-12-01T21:46:04.7947620Z     check.warn(importable)
2022-12-01T21:46:04.7950891Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.ShampooSales' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.7952693Z       !!
2022-12-01T21:46:04.7953835Z 
2022-12-01T21:46:04.7954022Z 
2022-12-01T21:46:04.7954325Z       ############################
2022-12-01T21:46:04.7955331Z       # Package would be ignored #
2022-12-01T21:46:04.7955846Z       ############################
2022-12-01T21:46:04.7957514Z       Python recognizes 'sktime.datasets.data.ShampooSales' as an importable package,
2022-12-01T21:46:04.7958681Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.7964524Z 
2022-12-01T21:46:04.7966180Z       'sktime.datasets.data.ShampooSales' has been automatically added to the distribution only
2022-12-01T21:46:04.7974126Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.7978524Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.7980130Z 
2022-12-01T21:46:04.7981658Z       Please make sure that 'sktime.datasets.data.ShampooSales' is included as a package by using
2022-12-01T21:46:04.7983207Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.8005748Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.8007078Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.8007406Z 
2022-12-01T21:46:04.8008684Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.8009126Z       documentation page.
2022-12-01T21:46:04.8009328Z 
2022-12-01T21:46:04.8009494Z 
2022-12-01T21:46:04.8009769Z   !!
2022-12-01T21:46:04.8010652Z 
2022-12-01T21:46:04.8011040Z     check.warn(importable)
2022-12-01T21:46:04.8017814Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.UnitTest' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.8043887Z       !!
2022-12-01T21:46:04.8044102Z 
2022-12-01T21:46:04.8044289Z 
2022-12-01T21:46:04.8044587Z       ############################
2022-12-01T21:46:04.8045058Z       # Package would be ignored #
2022-12-01T21:46:04.8045393Z       ############################
2022-12-01T21:46:04.8127272Z       Python recognizes 'sktime.datasets.data.UnitTest' as an importable package,
2022-12-01T21:46:04.8128016Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.8128299Z 
2022-12-01T21:46:04.8129969Z       'sktime.datasets.data.UnitTest' has been automatically added to the distribution only
2022-12-01T21:46:04.8130508Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.8140242Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.8140558Z 
2022-12-01T21:46:04.8141994Z       Please make sure that 'sktime.datasets.data.UnitTest' is included as a package by using
2022-12-01T21:46:04.8147172Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.8147699Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.8148861Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.8149160Z 
2022-12-01T21:46:04.8154204Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.8154810Z       documentation page.
2022-12-01T21:46:04.8155035Z 
2022-12-01T21:46:04.8155194Z 
2022-12-01T21:46:04.8156258Z   !!
2022-12-01T21:46:04.8156465Z 
2022-12-01T21:46:04.8161245Z     check.warn(importable)
2022-12-01T21:46:04.8206461Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.Uschange' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.8208748Z       !!
2022-12-01T21:46:04.8208944Z 
2022-12-01T21:46:04.8209131Z 
2022-12-01T21:46:04.8209420Z       ############################
2022-12-01T21:46:04.8210609Z       # Package would be ignored #
2022-12-01T21:46:04.8210967Z       ############################
2022-12-01T21:46:04.8212588Z       Python recognizes 'sktime.datasets.data.Uschange' as an importable package,
2022-12-01T21:46:04.8213102Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.8214179Z 
2022-12-01T21:46:04.8215727Z       'sktime.datasets.data.Uschange' has been automatically added to the distribution only
2022-12-01T21:46:04.8216400Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.8216891Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.8217933Z 
2022-12-01T21:46:04.8219503Z       Please make sure that 'sktime.datasets.data.Uschange' is included as a package by using
2022-12-01T21:46:04.8220046Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.8221219Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.8221733Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.8222874Z 
2022-12-01T21:46:04.8223239Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.8223647Z       documentation page.
2022-12-01T21:46:04.8223849Z 
2022-12-01T21:46:04.8224033Z 
2022-12-01T21:46:04.8225105Z   !!
2022-12-01T21:46:04.8225285Z 
2022-12-01T21:46:04.8226426Z     check.warn(importable)
2022-12-01T21:46:04.8228549Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.segmentation' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.8230629Z       !!
2022-12-01T21:46:04.8230831Z 
2022-12-01T21:46:04.8230999Z 
2022-12-01T21:46:04.8232100Z       ############################
2022-12-01T21:46:04.8232486Z       # Package would be ignored #
2022-12-01T21:46:04.8233687Z       ############################
2022-12-01T21:46:04.8234338Z       Python recognizes 'sktime.datasets.data.segmentation' as an importable package,
2022-12-01T21:46:04.8235530Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.8235866Z 
2022-12-01T21:46:04.8241144Z       'sktime.datasets.data.segmentation' has been automatically added to the distribution only
2022-12-01T21:46:04.8242891Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.8243510Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.8243790Z 
2022-12-01T21:46:04.8244586Z       Please make sure that 'sktime.datasets.data.segmentation' is included as a package by using
2022-12-01T21:46:04.8249863Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.8250553Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.8251596Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.8251999Z 
2022-12-01T21:46:04.8285685Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.8286373Z       documentation page.
2022-12-01T21:46:04.8287589Z 
2022-12-01T21:46:04.8287793Z 
2022-12-01T21:46:04.8289020Z   !!
2022-12-01T21:46:04.8289237Z 
2022-12-01T21:46:04.8289536Z     check.warn(importable)
2022-12-01T21:46:04.8292934Z   /home/conda/feedstock_root/build_artifacts/sktime-suite_1669931065035/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/lib/python3.9/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'sktime.datasets.data.solar' as data is deprecated, please list it in `packages`.
2022-12-01T21:46:04.8294893Z       !!
2022-12-01T21:46:04.8295117Z 
2022-12-01T21:46:04.8296228Z 
2022-12-01T21:46:04.8296518Z       ############################
2022-12-01T21:46:04.8296859Z       # Package would be ignored #
2022-12-01T21:46:04.8297178Z       ############################
2022-12-01T21:46:04.8298764Z       Python recognizes 'sktime.datasets.data.solar' as an importable package,
2022-12-01T21:46:04.8300384Z       but it is not listed in the `packages` configuration of setuptools.
2022-12-01T21:46:04.8300656Z 
2022-12-01T21:46:04.8302152Z       'sktime.datasets.data.solar' has been automatically added to the distribution only
2022-12-01T21:46:04.8303660Z       because it may contain data files, but this behavior is likely to change
2022-12-01T21:46:04.8304169Z       in future versions of setuptools (and therefore is considered deprecated).
2022-12-01T21:46:04.8304454Z 
2022-12-01T21:46:04.8306043Z       Please make sure that 'sktime.datasets.data.solar' is included as a package by using
2022-12-01T21:46:04.8307542Z       the `packages` configuration field or the proper discovery methods
2022-12-01T21:46:04.8308023Z       (for example by using `find_namespace_packages(...)`/`find_namespace:`
2022-12-01T21:46:04.8309199Z       instead of `find_packages(...)`/`find:`).
2022-12-01T21:46:04.8309628Z 
2022-12-01T21:46:04.8310883Z       You can read more about "package discovery" and "data files" on setuptools
2022-12-01T21:46:04.8311322Z       documentation page.

Installed packages

-

Environment info

-

[MNT] Include python 3.10 in CI worfklows

Solution to issue cannot be found in the documentation.

  • I checked the documentation.

Issue

Recently sktime extended support to python 3.10, however the CI pipelines in the repo do not cover python 3.10.

Installed packages

conda list

Environment info

conda info

Should there be a noarch build ๏ผŸ

Hi, dear maintainers, since the c dependencies have been replaced by numba, is it possible to add a noarch build, so that M1 Mac can use this package natively?

python 3.11 support

We should ensure that 0.16.1 gets properly released with 3.11 support on conda-forge.

@dhirschfeld, @giswqs, thanks for your contribution!

I'm not 100% clear about the status, CI does seem to confirm 3.10 only and the 3.11 install still does not work locally.

Do you have a good picture of what we'd need to do, and what the blockers are? How can I help?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.