-
Notifications
You must be signed in to change notification settings - Fork 68
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
unasync changes #196
unasync changes #196
Conversation
@@ -10,7 +10,7 @@ repos: | |||
files: ^(ahk/_async/.*\.py|\.unasync-rewrite\.py|tests/_async/.*\.py) | |||
pass_filenames: false | |||
additional_dependencies: | |||
- unasync | |||
- git+https://github.com/spyoungtech/unasync.git@unasync-remove |
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.
Once python-trio/unasync#75 is merged and the new unasync version is published to pypi, we can remove this change
@@ -1,2 +1,2 @@ | |||
[build-system] | |||
requires = ["setuptools", "unasync", "tokenize-rt"] | |||
requires = ["setuptools", "unasync @ https://github.com/spyoungtech/unasync/archive/refs/heads/unasync-remove.zip", "tokenize-rt"] |
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.
Once python-trio/unasync#75 is merged and the new unasync version is published to pypi, we can remove this change
Update for including new version of
unasync
which will supportunasync: remove
comments -- so the custom logic can be removed from this project.Should also allow us to use
python -m build
correctly (instead of needing to dopython setup.py sdist bdist_wheel
Resolves #195