Skip to content

Commit

Permalink
change import order (#5180)
Browse files Browse the repository at this point in the history
Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>
  • Loading branch information
harupy committed Dec 17, 2021
1 parent a68de12 commit 2b67fc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cross-version-tests.yml
Expand Up @@ -112,7 +112,8 @@ jobs:
- name: Get python version
id: get-python-version
run: |
if [[ "${{ matrix.package }}" = "scikit-learn" && ! "${{ matrix.version }}" =~ ^0\.* ]] || \
if [[ "${{ matrix.version }}" = "dev" ]] || \
[[ "${{ matrix.package }}" = "scikit-learn" && ! "${{ matrix.version }}" =~ ^0\.* ]] || \
[[ "${{ matrix.package }}" = "statsmodels" ]] || \
[[ "${{ matrix.package }}" = "tensorflow" && ! "${{ matrix.version }}" =~ ^2\.[0-6] ]] || \
[[ "${{ matrix.package }}" = "keras" && ! "${{ matrix.version }}" =~ ^2\.[0-6] ]]
Expand Down
2 changes: 1 addition & 1 deletion mlflow/spark.py
Expand Up @@ -19,13 +19,13 @@
MLeap-compatible arguments.
"""
import os
import yaml
import logging
import posixpath
import re
import shutil
import traceback
import uuid
import yaml

import mlflow
from mlflow import pyfunc, mleap
Expand Down

0 comments on commit 2b67fc1

Please sign in to comment.