Skip to content

Commit

Permalink
update version in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Feb 22, 2024
1 parent 7239e27 commit c5ab8e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

`pip install fgpyo`

**Requires python 3.7+**
**Requires python 3.8+**

See documentation on [fgpyo.readthedocs.org][rtd-link].

Expand Down
2 changes: 1 addition & 1 deletion fgpyo/util/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def dict_parse(dict_string: str) -> Dict[Any, Any]:
union=type_,
parsers=[_get_parser(cls, arg, parsers) for arg in typing.get_args(type_)],
)
elif typing.get_origin(type_) is Literal: # Py>=3.7.
elif typing.get_origin(type_) is Literal:
return types.make_literal_parser(
type_,
[_get_parser(cls, type(arg), parsers) for arg in typing.get_args(type_)],
Expand Down

0 comments on commit c5ab8e5

Please sign in to comment.