Skip to content

Commit

Permalink
Merge pull request #468 from freemansw1/fix_typing_error
Browse files Browse the repository at this point in the history
Fix Matrix Testing & Typing Error
  • Loading branch information
freemansw1 authored Dec 18, 2024
2 parents 706b3ee + e527b5e commit cafc779
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/matrix_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cache-downloads: true
channels: conda-forge
channel-priority: strict
python-version: ${{ matrix.python-version }}
create-args: python=${{ matrix.python-version }}

- name: Fetch all history for all tags and branches
run: |
Expand Down
1 change: 1 addition & 0 deletions tobac/merge_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"""

from __future__ import annotations
import logging
from typing import Optional
from typing_extensions import Literal
Expand Down
1 change: 1 addition & 0 deletions tobac/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
12(11), 4551-4570.
"""

from __future__ import annotations
import warnings
import logging

Expand Down
1 change: 1 addition & 0 deletions tobac/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
12(11), 4551-4570.
"""

from __future__ import annotations
import copy
import logging

Expand Down
1 change: 1 addition & 0 deletions tobac/tests/test_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for the trackpy tracking functions
"""

from __future__ import annotations
import datetime
import copy

Expand Down
1 change: 1 addition & 0 deletions tobac/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
12(11), 4551-4570.
"""

from __future__ import annotations
import logging
from operator import is_
import numpy as np
Expand Down
1 change: 1 addition & 0 deletions tobac/utils/bulk_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""

from __future__ import annotations
import logging
import warnings
from functools import partial
Expand Down
1 change: 1 addition & 0 deletions tobac/utils/decorators.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Decorators for use with other tobac functions
"""

from __future__ import annotations
import functools
import warnings

Expand Down
1 change: 1 addition & 0 deletions tobac/utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"""

from __future__ import annotations
import copy
import logging
from typing_extensions import Literal
Expand Down

0 comments on commit cafc779

Please sign in to comment.