Skip to content

Commit ce40920

Browse files
Move the nextmv pkg to its own folder
1 parent 94c11ce commit ce40920

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+22
-14
lines changed

.github/workflows/python-lint.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
fail-fast: false
88
matrix:
99
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
10+
package: ["nextmv"]
1011
steps:
1112
- name: git clone
1213
uses: actions/checkout@v4
@@ -20,6 +21,8 @@ jobs:
2021
run: |
2122
python -m pip install --upgrade pip
2223
pip install -r requirements.txt
24+
working-directory: ./{{ matrix.package }}
2325

2426
- name: lint with ruff
2527
run: ruff check --output-format=github .
28+
working-directory: ./{{ matrix.package }}

.github/workflows/python-test.yml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
matrix:
99
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1010
platform: [ubuntu-latest, windows-latest, macos-latest, macos-13]
11+
package: ["nextmv"]
1112
steps:
1213
- name: git clone
1314
uses: actions/checkout@v4
@@ -21,6 +22,8 @@ jobs:
2122
run: |
2223
python -m pip install --upgrade pip
2324
pip install -r requirements.txt
25+
working-directory: ./{{ matrix.package }}
2426

2527
- name: unit tests
2628
run: python -m unittest
29+
working-directory: ./{{ matrix.package }}

LICENSE nextmv/LICENSE

File renamed without changes.

README.md nextmv/README.md

+1-1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pyproject.toml nextmv/pyproject.toml

-13
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,5 @@ all = [
5555
"mlflow>=2.17.2",
5656
]
5757

58-
[tool.ruff]
59-
target-version = "py39"
60-
lint.select = [
61-
"E", # pycodestyle errors
62-
"W", # pycodestyle warnings
63-
"F", # pyflakes
64-
"I", # isort
65-
"C", # flake8-comprehensions
66-
"B", # flake8-bugbear
67-
"UP", # pyupgrade
68-
]
69-
line-length = 120
70-
7158
[tool.hatch.version]
7259
path = "nextmv/__about__.py"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ruff.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
target-version = "py39"
2+
3+
# Rule selection.
4+
lint.select = [
5+
"E", # pycodestyle errors
6+
"W", # pycodestyle warnings
7+
"F", # pyflakes
8+
"I", # isort
9+
"C", # flake8-comprehensions
10+
"B", # flake8-bugbear
11+
"UP", # pyupgrade
12+
]
13+
14+
# Rule configuration.
15+
line-length = 120

0 commit comments

Comments
 (0)