Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Matrix Testing & Typing Error #468

Merged
merged 4 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading