Skip to content

Commit

Permalink
Hotfix: Jobs Table Bug Fix (#619)
Browse files Browse the repository at this point in the history
* Move TethysJob model import out of module scope in jobs_table.py.

* Increment version to 3.2.1
  • Loading branch information
swainn authored Nov 30, 2020
1 parent 1beb659 commit 53b59d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = tethys-platform
version = 3.2.0
version = 3.2.1
license = BSD 2-Clause License
summary = Primary Tethys Platform Django Site Project
description-file = README.rst
Expand Down
2 changes: 1 addition & 1 deletion tethys_gizmos/gizmo_options/jobs_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from collections import namedtuple
import logging

from tethys_sdk.jobs import TethysJob
from tethys_cli.cli_colors import write_warning
from .base import TethysGizmoOptions
from .select_input import SelectInput
Expand Down Expand Up @@ -203,6 +202,7 @@ def get_row(job, job_attributes):
A list of field values for one row.
"""
from tethys_compute.models import TethysJob
row_values = list()
job_actions = dict()
for attribute in job_attributes:
Expand Down

0 comments on commit 53b59d6

Please sign in to comment.