Skip to content

Commit

Permalink
Add Dashboard Support #72: Updated CHANGES && Import Paths
Browse files Browse the repository at this point in the history
This PR updates the CHANGES.md to include the deprecation of `python
3.6`. Further, it updates the paths to the `utils` function
`remove_empty_attributes`. The test set up puts the
  • Loading branch information
jpavlav committed Mar 26, 2024
1 parent 2a06827 commit f26bfe1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Change Log

## 2.7.0
## 3.0.0

- Drop support for `python 3.6`
- Add new ``jira.add_gadget`` action
- Add new ``jira.copy_dashboard`` action
- Add new ``jira.create_dashboard`` action
Expand Down
2 changes: 1 addition & 1 deletion actions/add_gadget.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from lib.base import BaseJiraAction
from lib.utils import remove_empty_attributes
from utils import remove_empty_attributes

__all__ = ["AddGadgetAction"]

Expand Down
2 changes: 1 addition & 1 deletion actions/copy_dashboard.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from lib.base import BaseJiraAction
from lib.utils import remove_empty_attributes
from utils import remove_empty_attributes

__all__ = ["CopyJiraDashboardAction"]

Expand Down
2 changes: 1 addition & 1 deletion actions/create_dashboard.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from lib.base import BaseJiraAction
from lib.utils import remove_empty_attributes
from utils import remove_empty_attributes

__all__ = ["CreateJiraDashboardAction"]

Expand Down
2 changes: 1 addition & 1 deletion actions/update_dashboard.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from lib.base import BaseJiraAction
from lib.utils import remove_empty_attributes
from utils import remove_empty_attributes

__all__ = ["UpdateJiraDashboardAction"]

Expand Down
2 changes: 1 addition & 1 deletion actions/update_gadget.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from lib.base import BaseJiraAction
from lib.utils import remove_empty_attributes
from utils import remove_empty_attributes

__all__ = ["UpdateGadgetAction"]

Expand Down

0 comments on commit f26bfe1

Please sign in to comment.