Skip to content

Commit

Permalink
Fix support for 3.9+ #129
Browse files Browse the repository at this point in the history
  • Loading branch information
ruscoder committed Aug 18, 2024
1 parent 44243a2 commit 2503e7a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.0.4
* Fix support for 3.9+ #129

## 2.0.3
* Fix typings for mypy for SearchSet

Expand Down
2 changes: 1 addition & 1 deletion fhirpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .lib import AsyncFHIRClient, SyncFHIRClient

__title__ = "fhir-py"
__version__ = "2.0.3"
__version__ = "2.0.4"
__author__ = "beda.software"
__license__ = "None"
__copyright__ = "Copyright 2024 beda.software"
Expand Down
3 changes: 2 additions & 1 deletion fhirpy/base/searchset.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
import datetime
from abc import ABC, abstractmethod
from collections import defaultdict
from typing import Generic, Self, Union
from typing import Generic, Union

import pytz
from typing_extensions import Self

from fhirpy.base.client import TClient
from fhirpy.base.exceptions import InvalidResponse
Expand Down

0 comments on commit 2503e7a

Please sign in to comment.