I encountered an issue while using the bevel library in conjunction with the latest version of NumPy. The library appears to have a dependency on the deprecated np.int alias, which leads to an AttributeError due to the changes introduced in NumPy 1.20.
Steps to Reproduce
Installed bevel library.
Attempted to use OrderedLogit class with the latest NumPy version.
Encountered AttributeError: module 'numpy' has no attribute 'int'.
Expected Behavior
I expected the library to handle the latest NumPy version without issues.
Workaround
As a temporary workaround, I installed NumPy version 1.19.5 and explicitly called np.int in my code. However, this is not a sustainable solution.
Additional Information
Python Version: 3.10.12
bevel Library Version: 0.1.0
NumPy Version: 1.25.2
Suggestions
It would be great if the library was updated to address the deprecated np.int alias and ensure compatibility with the latest versions of NumPy.
Issue Summary
I encountered an issue while using the
bevel
library in conjunction with the latest version of NumPy. The library appears to have a dependency on the deprecatednp.int
alias, which leads to anAttributeError
due to the changes introduced in NumPy 1.20.Steps to Reproduce
bevel
library.OrderedLogit
class with the latest NumPy version.AttributeError: module 'numpy' has no attribute 'int'
.Expected Behavior
I expected the library to handle the latest NumPy version without issues.
Workaround
As a temporary workaround, I installed NumPy version 1.19.5 and explicitly called
np.int
in my code. However, this is not a sustainable solution.Additional Information
bevel
Library Version: 0.1.0Suggestions
It would be great if the library was updated to address the deprecated
np.int
alias and ensure compatibility with the latest versions of NumPy.Thank you!