Skip to content

Commit

Permalink
fix: mlflow versioning (#77)
Browse files Browse the repository at this point in the history
* fix: add same version of mlflow for skinny package

* build: Bump version 1.3.1 -> 1.3.2

* docs: update changelog
  • Loading branch information
rcmalli authored Nov 6, 2023
1 parent 48bc5dc commit b49115f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Changelog
All notable changes to this project will be documented in this file.

### [1.3.2]

#### Updated

- Update `mlflow` requirements for `mlflow-skinny` package to align with the same version of main `mlflow` package.

### [1.3.1]

#### Updated
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]" },
Expand Down Expand Up @@ -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.*",
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion quadra/__init__.py
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():
Expand Down

0 comments on commit b49115f

Please sign in to comment.