-
Notifications
You must be signed in to change notification settings - Fork 9
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
Port Project to Python3.9 #16
Conversation
56e12a2
to
e4994c9
Compare
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.
LGTM
from assetman.parsers.django_parser import DjangoParser | ||
return DjangoParser(template_path, settings) | ||
print(template_type, template_path) | ||
from assetman.parsers.tornado_parser import TornadoParser |
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.
Can we move this import to the top now since we don't need to dynamically import?
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.
Seems like the dynamic import might be there because there is a circular dependency between assetman/tools.py
and assetman/parsers/tornado_parser.py
32f93c9
to
a7e438a
Compare
Resolves: TS-2847
6972fa1
to
2937b0b
Compare
Port project to Python3.9
This PR ports this project to Python 3.9.