Skip to content

Commit

Permalink
updated dependencies and fix install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
ipamaas committed Jun 26, 2023
1 parent 33fe371 commit d3b446d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ wheel = "*"
twine = "*"

[packages]
jsonschema = "==4.17.3"
jsonschema = ">=4.17.3"
enum34 = "==1.1.10"
websocket_client = "==1.6.0"
websocket_client = ">=1.6.0"

[requires]
python_version = "3.8"
16 changes: 8 additions & 8 deletions Pipfile.lock

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

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
websocket-client==1.6.0
websocket-client>=1.6.0
jsonschema>=4.17.3
enum34>=1.1.10
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def get_version(*file_paths):
},
include_package_data=True,
install_requires=[
"websocket-client==0.57.0",
"jsonschema>=4.4.0",
"websocket-client>=1.6.0",
"jsonschema>=4.17.3",
"enum34>=1.1.10",
],
zip_safe=False,
Expand Down

0 comments on commit d3b446d

Please sign in to comment.