-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2052 from cmu-delphi/release/indicators_v0.3.56_u…
…tils_v0.3.25 Release covidcast-indicators 0.3.56
- Loading branch information
Showing
60 changed files
with
51,794 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.3.55 | ||
current_version = 0.3.56 | ||
commit = True | ||
message = chore: bump covidcast-indicators to {new_version} | ||
tag = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[bumpversion] | ||
current_version = 0.3.24 | ||
current_version = 0.3.25 | ||
commit = True | ||
message = chore: bump delphi_utils to {new_version} | ||
tag = False | ||
|
||
[bumpversion:file:setup.py] | ||
[bumpversion:file:pyproject.toml] | ||
|
||
[bumpversion:file:delphi_utils/__init__.py] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
from .nancodes import Nans | ||
from .weekday import Weekday | ||
|
||
__version__ = "0.3.24" | ||
__version__ = "0.3.25" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm>=8.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "delphi-utils" | ||
version = "0.3.25" | ||
description = "Shared Utility Functions for Indicators" | ||
readme = "README.md" | ||
requires-python = "== 3.8.*" | ||
license = { text = "MIT License" } | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: MIT", | ||
] | ||
dependencies = [ | ||
"boto3", | ||
"covidcast", | ||
"cvxpy", | ||
"epiweeks", | ||
"gitpython", | ||
"importlib_resources>=1.3", | ||
"numpy", | ||
"pandas>=1.1.0", | ||
"requests", | ||
"slackclient", | ||
"scs<3.2.6", # TODO: remove this ; it is a cvxpy dependency, and the excluded version appears to break our jenkins build. see: https://github.com/cvxgrp/scs/issues/283 | ||
"structlog", | ||
"xlrd", # needed by Pandas to read Excel files | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/cmu-delphi/covidcast-indicators" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"darker[isort]~=2.1.1", | ||
"pylint==2.8.3", | ||
"pytest", | ||
"pydocstyle", | ||
"pytest-cov", | ||
"mock", | ||
"moto~=4.2.14", | ||
"requests-mock", | ||
"freezegun", | ||
] | ||
flash = ["scipy"] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["delphi_utils"] | ||
namespaces = true | ||
|
||
[tool.setuptools.package-data] | ||
"delphi_utils.data" = ["20*/*.csv"] |
Oops, something went wrong.