Skip to content

Commit

Permalink
make cached_property compatible with python 3.7 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyn4 authored Sep 27, 2024
1 parent 7eb5d20 commit 9d658eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ license = "Apache 2.0"
python = "<3.11,>=3.7.1"
requests = "^2.25.1"
singer-sdk = "^0.5.0"
cached-property = "1.5.2"

[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
Expand Down
2 changes: 1 addition & 1 deletion tap_lightspeed/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import backoff
import copy
from time import sleep
from functools import cached_property
from cached_property import cached_property


class LightspeedStream(RESTStream):
Expand Down

0 comments on commit 9d658eb

Please sign in to comment.