Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make eval_type_backport an optional dependency #11

Merged
merged 5 commits into from
Aug 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
make eval_type_backport an optional dependency
  • Loading branch information
jrmcgaha-dev committed Aug 7, 2024
commit 6bdba7bcf4158593518144108aae91e987badbd4
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,14 @@ dependencies = [
"paho-mqtt>=1.6.1,<2.0.0",
"minio>=7.2.3",
"jsonschema[format-nongpl]>=4.21.1", # extras necessary for enforcing formats
"eval-type-backport>=0.1.3;python_version<'3.10'", # make pydantic work with newer syntax and older python
#"brotli>=1.1.0", # TODO - add this dependency when we add compression
]

[project.optional-dependencies]
amqp = [
"pika>=1.3.2,<2.0.0",
]
# if running Python 3.8, you'll need this dependency if you want runtime eval types, i.e.
# Literal[tuple(some_dict.keys())]
py38 = [
"eval-type-backport>=0.1.3",
]
docs = [
"sphinx>=5.3.0",
"furo>=2023.3.27",
Expand Down
Loading