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

chore(deps): update attrs requirement from <22.0,>=21.2.0 to >=21.2.0,<24.0 #53

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

37 changes: 37 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Base requirements

# Attrs, helpful for removing boilerplate, cattr is for serialization/deserializaton.
attrs >=21.2.0,<24.0
cattrs >=1.7.1,<2.0
# Easy date parsing (e.g., from API).
python-dateutil >=2.8.1,<3.0

# JSON Schema
jsonschema >=4.4,<4.5

# Easy logging.
logzero >=1.7.0,<2.0

# Compact, round-tripable configuration format.
toml >=0.10.2,<0.11

# simplejson has better encoders/decoders
simplejson >=3.17.2,<4.0

# HTTP requests for humans.
requests >=2.25.1,<3.0

# Useful progress display.
tqdm >=4.61.1,<5.0

# Tabular display.
tabulate >=0.8.9,<0.9

# Levenshtein distance.
polyleven >=0.8,<0.9

# JSON schema.
jsonschema >=4.4.0,<4.5

# Type checking
typeguard >=2.13.3,<3.0
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Base requirements

# Attrs, helpful for removing boilerplate, cattr is for serialization/deserializaton.
attrs >=21.2.0,<22.0
attrs >=21.2.0,<24.0
cattrs >=1.7.1,<2.0
# Easy date parsing (e.g., from API).
python-dateutil >=2.8.1,<3.0
Expand Down
Loading