Skip to content

Commit

Permalink
v2.0.7: fix py3.7 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoglom committed Oct 1, 2024
1 parent 828ccca commit 8f2ad58
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pyjwt = "==2.8.0"
cryptography = "*"
dataclasses-json = "*"
cffi = ">=1.15.1"
typing-extensions = "*"

[scripts]
tconnectsync = "python3 main.py"
Expand Down
3 changes: 2 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[metadata]
name = tconnectsync
version = 2.0.6
version = 2.0.7
author = James Woglom
author_email = [email protected]
description = Syncs Tandem t:connect pump data to Nightscout for the t:slim X2
description = Syncs Tandem Source (formerly t:connect) insulin pump data to Nightscout for the t:slim X2
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jwoglom/tconnectsync
Expand Down Expand Up @@ -34,6 +34,7 @@ install_requires =
cryptography
dataclasses-json
cffi
typing-extensions

[options.packages.find]
where = .
Expand Down
4 changes: 4 additions & 0 deletions tconnectsync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
import argparse
import logging
import pkg_resources
import typing
import typing_extensions
if sys.version_info < (3, 8):
typing.Protocol = typing_extensions.Protocol

from .api import TConnectApi
from .process import process_time_range
Expand Down

0 comments on commit 8f2ad58

Please sign in to comment.