-
Notifications
You must be signed in to change notification settings - Fork 4
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
Workaround for chardet dependency issue #154
Conversation
setup.py
Outdated
@@ -321,6 +321,7 @@ def initialize_options(self) -> None: | |||
# Not sure how/if interface will change in db-facts, so | |||
# let's be conservative about what we're specifying for now. | |||
'db-facts>=4,<5', | |||
# ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file, one of the 3 largest in the project, increased in size to 374 lines. The total size of those files is now 3416 lines (target: 1143). Is this file complex enough to refactor?
setup.py
Outdated
@@ -321,7 +321,9 @@ def initialize_options(self) -> None: | |||
# Not sure how/if interface will change in db-facts, so | |||
# let's be conservative about what we're specifying for now. | |||
'db-facts>=4,<5', | |||
'chardet', | |||
# Version 4.0.0 is not yet compatible with requests, and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file, one of the 3 largest in the project, increased in size to 375 lines. The total size of those files is now 3417 lines (target: 1143). Is this file complex enough to refactor?
setup.py
Outdated
@@ -321,7 +321,9 @@ def initialize_options(self) -> None: | |||
# Not sure how/if interface will change in db-facts, so | |||
# let's be conservative about what we're specifying for now. | |||
'db-facts>=4,<5', | |||
'chardet', | |||
# Version 4.0.0 is not yet compatible with requests, and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file, one of the 3 largest in the project, increased in size to 375 lines. The total size of those files is now 3417 lines (target: 1144). Is this file complex enough to refactor?
@@ -321,7 +321,11 @@ def initialize_options(self) -> None: | |||
# Not sure how/if interface will change in db-facts, so | |||
# let's be conservative about what we're specifying for now. | |||
'db-facts>=4,<5', | |||
'chardet', | |||
# Version 4.0.0 is not yet compatible with requests, and pip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file, one of the 3 largest in the project, increased in size to 377 lines. The total size of those files is now 3419 lines (target: 1147). Is this file complex enough to refactor?
No description provided.