Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow MLflow run names without asset key #1

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
96 changes: 96 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
pytest-junit.xml

# Sphinx documentation
docs/_build/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
.python-version

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json
mypy-report.xml

# Pyre type checker
.pyre/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/

# VS Code
.vscode/
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ dependencies = [
"dagster>=1.7.4",
"mlflow>=2.12.1",
"joblib>=1.4.2",
"lakefs-spec>=0.9.0"
"lakefs-spec>=0.9.0",
]

[project.optional-dependencies]
dev = ["black", "ruff", "ruff-lsp"]
dev = ["ruff"]

[tool.ruff]
src = ["src"]
Expand Down
95 changes: 95 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# This file was autogenerated by uv via the following command:
# uv pip compile -o requirements-dev.txt --no-annotate --extra=dev pyproject.toml
aenum==3.1.15
alembic==1.13.1
aniso8601==9.0.1
annotated-types==0.7.0
blinker==1.8.2
cachetools==5.3.3
certifi==2024.6.2
charset-normalizer==3.3.2
click==8.1.7
cloudpickle==3.0.0
coloredlogs==14.0
contourpy==1.2.1
croniter==2.0.5
cycler==0.12.1
dagster==1.7.8
dagster-pipes==1.7.8
deprecated==1.2.14
docker==7.1.0
docstring-parser==0.16
entrypoints==0.4
filelock==3.14.0
flask==3.0.3
fonttools==4.53.0
fsspec==2024.6.0
gitdb==4.0.11
gitpython==3.1.43
graphene==3.3
graphql-core==3.2.3
graphql-relay==3.2.0
grpcio==1.64.1
grpcio-health-checking==1.62.2
gunicorn==22.0.0
humanfriendly==10.0
idna==3.7
importlib-metadata==7.1.0
itsdangerous==2.2.0
jinja2==3.1.4
joblib==1.4.2
kiwisolver==1.4.5
lakefs==0.6.2
lakefs-sdk==1.25.0
lakefs-spec==0.9.0
mako==1.3.5
markdown==3.6
markdown-it-py==3.0.0
markupsafe==2.1.5
matplotlib==3.9.0
mdurl==0.1.2
mlflow==2.13.1
numpy==1.26.4
opentelemetry-api==1.25.0
opentelemetry-sdk==1.25.0
opentelemetry-semantic-conventions==0.46b0
packaging==24.0
pandas==2.2.2
pendulum==3.0.0
pillow==10.3.0
protobuf==4.25.3
pyarrow==15.0.2
pydantic==2.7.3
pydantic-core==2.18.4
pygments==2.18.0
pyparsing==3.1.2
python-dateutil==2.9.0.post0
python-dotenv==1.0.1
pytz==2024.1
pyyaml==6.0.1
querystring-parser==1.2.4
requests==2.32.3
rich==13.7.1
ruff==0.4.7
scikit-learn==1.5.0
scipy==1.13.1
setuptools==70.0.0
six==1.16.0
smmap==5.0.1
sqlalchemy==2.0.30
sqlparse==0.5.0
structlog==24.2.0
tabulate==0.9.0
threadpoolctl==3.5.0
time-machine==2.14.1
tomli==2.0.1
toposort==1.10
tqdm==4.66.4
typing-extensions==4.12.1
tzdata==2024.1
universal-pathlib==0.2.2
urllib3==2.0.7
watchdog==4.0.1
werkzeug==3.0.3
wrapt==1.16.0
zipp==3.19.1
Loading