Skip to content

Commit c77b376

Browse files
authored
Fixed to work with Python 3.10 (#5)
1 parent 8eb3eaa commit c77b376

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
windows-latest,
1919
macOS-latest,
2020
]
21-
python-version: ["3.11", "3.12"]
21+
python-version: ["3.10", "3.12"]
2222
name: ${{ matrix.os }}, Python ${{ matrix.python-version }} test
2323
steps:
2424
- uses: actions/checkout@v2

msfc_ccd/_images/_sensor_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from __future__ import annotations
2-
from typing import Self
2+
from typing_extensions import Self
33
import dataclasses
44
import pathlib
55
import numpy as np

msfc_ccd/_images/_tap_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Self, ClassVar
1+
from typing_extensions import Self, ClassVar
22
import abc
33
import dataclasses
44
import astropy.units as u

0 commit comments

Comments
 (0)