-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: add same version of mlflow for skinny package * build: Bump version 1.3.1 -> 1.3.2 * docs: update changelog
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "quadra" | ||
version = "1.3.1" | ||
version = "1.3.2" | ||
description = "Deep Learning experiment orchestration library" | ||
authors = [ | ||
{ name = "Alessandro Polidori", email = "[email protected]" }, | ||
|
@@ -42,11 +42,13 @@ dependencies = [ | |
"hydra-optuna-sweeper==1.2.*", | ||
# --------- loggers --------- # | ||
"mlflow==2.3.1", | ||
"mlflow-skinny==2.3.1", | ||
"boto3==1.26.*", # needed for artifact storage | ||
"minio==7.1.*", # needed for artifact storage | ||
"tensorboard==2.11.*", | ||
# --------- others --------- # | ||
"Pillow==9.3.0", # required by label-studio-converter | ||
# required by label-studio-converter | ||
"Pillow==9.3.0", | ||
"pandas<2.0.0", | ||
"opencv-python-headless==4.7.0.*", | ||
"python-dotenv==0.21.*", | ||
|
@@ -119,7 +121,7 @@ repository = "https://github.com/orobix/quadra" | |
|
||
# Adapted from https://realpython.com/pypi-publish-python-package/#version-your-package | ||
[tool.bumpver] | ||
current_version = "1.3.1" | ||
current_version = "1.3.2" | ||
version_pattern = "MAJOR.MINOR.PATCH" | ||
commit_message = "build: Bump version {old_version} -> {new_version}" | ||
commit = true | ||
|
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,4 +1,4 @@ | ||
__version__ = "1.3.1" | ||
__version__ = "1.3.2" | ||
|
||
|
||
def get_version(): | ||
|