-
Notifications
You must be signed in to change notification settings - Fork 1
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 #4 from AbsaOSS/Release/1.3.1
Release/1.3.1
- Loading branch information
Showing
4 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 +1,2 @@ | ||
/rialto/ @MDobransky | ||
/rialto/ @vvancak |
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,16 +1,30 @@ | ||
[tool.poetry] | ||
name = "rialto" | ||
|
||
version = "1.3.0" | ||
version = "1.3.1" | ||
|
||
packages = [ | ||
{ include = "rialto" }, | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
] | ||
description = "Rialto is a framework for building and deploying machine learning features in a scalable and reusable way. It provides a set of tools that make it easy to define and deploy features and models, and it provides a way to orchestrate the execution of these features and models." | ||
authors = ["Marek Dobransky <[email protected]>", "Vladislav Vancak <[email protected]>"] | ||
|
||
description = "Rialto" | ||
authors = ["Marek Dobransky <[email protected]>"] | ||
[project] | ||
name = "rialto" | ||
readme = "README.md" | ||
description = "Rialto is a framework for building and deploying machine learning features in a scalable and reusable way. It provides a set of tools that make it easy to define and deploy features and models, and it provides a way to orchestrate the execution of these features and models." | ||
authors = ["Marek Dobransky <[email protected]>", "Vladislav Vancak <[email protected]>"] | ||
keywords = ["feature", "featureslib", "featuremaker", "metadata", "featureloader", "loader"] | ||
|
||
[project.urls] | ||
Documentation = "https://absaoss.github.io/rialto/" | ||
Repository = "https://github.com/AbsaOSS/rialto" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10,<4.0" | ||
pydantic = "^2.2.1" | ||
|