-
Notifications
You must be signed in to change notification settings - Fork 15
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
Feature/py3.13 #26
base: master
Are you sure you want to change the base?
Feature/py3.13 #26
Conversation
setup.py
Outdated
description="High performance Trie and Ahocorasick automata (AC automata) for python", | ||
name="cyac", | ||
url="https://github.com/nppoly/cyac", | ||
author="nppoly", | ||
author_email="[email protected]", | ||
packages=["cyac"], | ||
package_dir={'cyac': 'lib/cyac'}, | ||
package_data={'cyac': ['*.pxd', 'cyac/unicode_portability.c']}, | ||
package_data={'cyac': ['*.pxd', 'cyac/unicode_portability.c', 'cyac/unicodectype_db.h']}, |
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.
Mistype: "unicodetype_db.h" (without "c" between "unicode" and "type").
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.
new version is uploaded
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.
if you are using this library in product env, please also do some perf, if there are any bottlenecks. I'm happy to optimize it.
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.
@chenkovsky thank you! First I'll try it on CPython 3.12, because not all dependencies which I'm using in production environment are compatible with CPython 3.13 now. When I could update to version 3.13 I'll give you feedback here about usage in production.
2516596
to
55f1ba7
Compare
No description provided.