Skip to content

Commit 9a15ee5

Browse files
authored
V0.4.0 (#4)
1 parent 9860e75 commit 9a15ee5

40 files changed

+722
-338
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
## Expected Behavior
2-
3-
41
## Actual Behavior
52

3+
## Expected Behavior
64

7-
## Steps to Reproduce the Problem
5+
## Steps to Reproduce
86

97
1.
108
1.
119
1.
1210

13-
## Specifications
11+
## System Specifications
1412

1513
- Version:
1614
- Platform:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@ Fixes #
22

33
## Proposed Changes
44

5-
-
6-
-
75
-

.github/workflows/on-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: ./.github/actions/setup
14-
- run: poetry install --with dev,checks,formats
14+
- run: poetry install --with dev,checks
1515
- run: poetry run invoke checks

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
.cache/
88
.coverage*
99
.mypy_cache/
10+
.ruff_cache/
1011
.pytest_cache/
1112

1213
# Editor

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default_language_version:
66
repos:
77
# commons
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v4.4.0
9+
rev: v4.5.0
1010
hooks:
1111
- id: check-added-large-files
1212
- id: check-case-conflict

LICENCE.txt

Lines changed: 395 additions & 1 deletion
Large diffs are not rendered by default.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# MLOps Python Package
22

3+
[![on-release-published.yml](https://github.com/fmind/mlops-python-package/actions/workflows/on-release-published.yml/badge.svg)](https://github.com/fmind/mlops-python-package/actions/workflows/on-release-published.yml)
4+
[![Release](https://img.shields.io/github/v/release/fmind/mlops-python-package)](https://github.com/fmind/mlops-python-package/releases)
5+
6+
[![License](https://img.shields.io/github/license/fmind/mlops-python-package)](https://github.com/fmind/mlops-python-package/blob/main/LICENCE.txt)
7+
[![Documentation](https://img.shields.io/badge/documentation-available-brightgreen.svg)](https://fmind.github.io/mlops-python-package/)
8+
39
This repository contains a Python package implementation designed to support MLOps initiatives.
410

511
The package uses several [tools](#tools) and [tips](#tips) to make your MLOps experience as flexible, robust, productive as possible.

mlops-python-package.code-workspace

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,15 @@
1515
"editor.codeActionsOnSave": {
1616
"source.organizeImports": "explicit"
1717
},
18-
"editor.defaultFormatter": "ms-python.black-formatter"
18+
"editor.defaultFormatter": "charliermarsh.ruff",
1919
},
2020
},
2121
"extensions": {
2222
"recommendations": [
23+
"charliermarsh.ruff",
2324
"dchanco.vsc-invoke",
24-
"ms-python.black-formatter",
25-
"ms-python.isort",
26-
"ms-python.mypy-type-checker",
27-
"ms-python.pylint",
2825
"ms-python.python",
2926
"ms-python.vscode-pylance",
30-
"redhat.vscode-yaml",
3127
]
3228
}
33-
}
29+
}

poetry.lock

Lines changed: 30 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)