https://github.com/awslabs/gluon-ts
Revision 0cc3cd95de2a0086f370f5f05d5d5821c604634f authored by Lorenzo Stella on 02 February 2024, 12:35:57 UTC, committed by GitHub on 02 February 2024, 12:35:57 UTC
*Description of changes:* backporting fixes
- #3094 
- #3115 

Additionally: cap pandas version to <2.2


By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.


**Please tag this pr with at least one of these labels to make our
release process faster:** BREAKING, new feature, bug fix, other change,
dev setup

---------

Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com>
1 parent ed8d813
Raw File
Tip revision: 0cc3cd95de2a0086f370f5f05d5d5821c604634f authored by Lorenzo Stella on 02 February 2024, 12:35:57 UTC
Backports for v0.14.4 (#3121)
Tip revision: 0cc3cd9
setup.cfg
[metadata]
name = gluonts
version = attr: gluonts.__version__
url = https://github.com/awslabs/gluonts/
project_urls =
    Documentation = https://ts.gluon.ai/stable/
    Source Code = https://github.com/awslabs/gluonts/
license = Apache License 2.0
license_file = LICENSE
author = Amazon
author_email = gluon-ts-dev@amazon.com
maintainer_email = gluon-ts-dev@amazon.com
description = Probabilistic time series modeling in Python.
long_description = file: README.md
long_description_content_type = text/markdown

[options]
python_requires = >= 3.7
packages = find_namespace:
package_dir = = src
include_package_data = True

[options.packages.find]
where = src
include = gluonts*

[options.entry_points]
pygments.styles =
    gluonts-dark = gluonts.meta.style:Dark

[aliases]
test = pytest --addopts --cov=src/gluonts
tests = pytest --addopts --cov=src/gluonts

[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1

[mypy]
plugins = pydantic.mypy
back to top