Skip to content

Commit

Permalink
refactor: Dropped support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 11, 2024
1 parent 2861755 commit 85c2e77
Show file tree
Hide file tree
Showing 4 changed files with 432 additions and 404 deletions.
7 changes: 0 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,6 @@ repos:
additional_dependencies:
- types-requests

- repo: https://github.com/pycqa/flake8
rev: 7.1.1
hooks:
- id: flake8
additional_dependencies:
- darglint

- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.5.0"
hooks:
Expand Down
3 changes: 2 additions & 1 deletion meltano_map_transform/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import TYPE_CHECKING, Generator
from typing import TYPE_CHECKING

import singer_sdk.typing as th
from singer_sdk import _singerlib as singer
Expand All @@ -11,6 +11,7 @@
from singer_sdk.mapper_base import InlineMapper

if TYPE_CHECKING:
from collections.abc import Generator
from pathlib import PurePath


Expand Down
Loading

0 comments on commit 85c2e77

Please sign in to comment.