Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.9' ]
python-version: [ '3.10' ]

env:
POSTGRES_DB: mlflow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.9' ]
python-version: [ '3.10' ]

env:
POSTGRES_DB: mlflow
Expand Down
2 changes: 1 addition & 1 deletion mlflow_server/mlflow/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.10-slim

ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
Expand Down
4 changes: 2 additions & 2 deletions mlflow_server/mlflow/requirements_mlflow.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mlflow==2.10.0
mlflow==3.11.1
psycopg2
psycopg2-binary
sqlalchemy
pymysql
boto3
requests==2.31.0
requests==2.33.0
2 changes: 1 addition & 1 deletion mlops/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__='0.10.0'
__version__='0.10.1'
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mlflow==2.10.0
mlflow==3.11.1
boto3
docker
minio
Expand All @@ -13,6 +13,6 @@ pandas
matplotlib
GitPython
PyYAML
requests==2.31.0
requests==2.33.0
click
setuptools
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ long_description_content_type = text/markdown

[options]
packages = find:
python_requires = <3.12
python_requires = >=3.10,<3.12

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason to restrict to just versions 3.10 and 3.11?

install_requires =
mlflow==2.10.0
mlflow>=3.11.1,<4.0.0
boto3
docker
minio
Expand All @@ -26,7 +26,7 @@ install_requires =
PyYAML
click
tqdm
requests==2.31.0
requests>=2.33.0

[options.entry_points]
console_scripts =
Expand Down
2 changes: 1 addition & 1 deletion tests/data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.10-slim
RUN apt-get update && apt-get install -y git

# Configure application
Expand Down
6 changes: 3 additions & 3 deletions tests/data/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy
-f https://download.pytorch.org/whl/torch_stable.html
torch==2.0.1+cpu
mlflow==2.10.0
torch==2.8.0
mlflow==3.11.1
boto3
requests==2.31.0
requests==2.33.0
Loading