-
Notifications
You must be signed in to change notification settings - Fork 2
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
Can't install #9
Comments
🤖 I'm going to attempt this change. The error messages indicate that the issue is with type casting in cython. the division operation in python 3.x results in a float by default, even when both operands are integers. in cython, when you assign the result of a division to a variable with a specified integer type (in this case, the fix would involve changing the division operation to perform integer division. in python (and cython), integer division can be done using the given that the error messages provide the exact locations and nature of the issue, and considering my experience with coding and type casting, i am confident that i can implement this change accurately. the fix would be to replace the |
🤖 PR created: #10 |
I tried to install the library, and got this error in the terminal:
Error compiling Cython file:
------------------------------------------------------------
...
while len(self.pages) > 0 and self.pages[-1].count == 0:
self.pages.pop()
The text was updated successfully, but these errors were encountered: