-
Notifications
You must be signed in to change notification settings - Fork 260
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
Fix loader building with Gradle #312
Fix loader building with Gradle #312
Conversation
Hi @rpavlik , could you help to review this PR? Thanks. |
@rpavlik What about this PR? If it needs a changelog fragment too, I can add a new commit for it. |
Haven't been in the office to look at any of these in any real detail, but yeah everything should have a changelog fragment |
Looks good, just needs a changelog fragment. |
The ru.vyarus.use-python will download MarkupSafe 2.1.1 on my laptopn with Python 3.8. But MarkupSafe removed soft_unicode from 2.1.0, used by jinja2:2.10.3, and it will cause importing error when running `./gradlew build` under src/loader directory. Instead of updating jinja2, this CL try to fix MarkupSafe version for loader to fix building problem. The release note of MarkupSafe is here: https://markupsafe.palletsprojects.com/en/2.1.x/changes/#version-2-1-0. Signed-off-by: utzcoz <utzcoz@outlook.com>
Signed-off-by: utzcoz <utzcoz@outlook.com>
Signed-off-by: utzcoz <utzcoz@outlook.com>
Signed-off-by: utzcoz <utzcoz@outlook.com>
c998042
to
c201601
Compare
Hi @rpavlik, sorry for delaying. I have rebased and added changelog for this PR. |
thanks very much for the fix! |
The ru.vyarus.use-python will download MarkupSafe 2.1.1 on my laptopn
with Python 3.8. But MarkupSafe removed soft_unicode from 2.1.0, used by
jinja2:2.10.3, and it will cause importing error when running
./gradlew build
under src/loader directory. Instead of updating jinja2, this PRtry to fix MarkupSafe version for loader to fix building problem.
The release note of MarkupSafe is here:
https://markupsafe.palletsprojects.com/en/2.1.x/changes/#version-2-1-0.
This PR also a GitHub workflow to check OpenXR Loader building with Gradle.