-
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ship multiple Lua versions in separate extension modules (GH-207)
* Build multiple Lupa extension modules for the different bundled Lua versions. * Test all Lupa variants with all Lua versions, not just the latest. * setup.py: Make sure we always remove all known options from the command line, not just the ones that happen to be relevant. * Disable Py27 builds in appveyor due to certificate issues with the old git version. We still have Windows builds in Github Actions. * Improve output in case of LuaJIT build failures. * Import the latest extension module only on demand from "import lupa" (on Py3.7 and later, which have PEP 562: module __getattr__). * Update versions of dependencies and build matrix. Closes #196
- Loading branch information
Showing
13 changed files
with
541 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ MANIFEST | |
*.patch | ||
wheel*/ | ||
lupa/version.py | ||
lupa/lua*.pyx | ||
|
||
# Vim swapfiles | ||
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[submodule "third-party/lua54"] | ||
path = third-party/lua54 | ||
url = https://github.com/lua/lua.git | ||
[submodule "third-party/lua53"] | ||
path = third-party/lua53 | ||
url = https://github.com/lua/lua.git | ||
[submodule "third-party/lua54"] | ||
path = third-party/lua54 | ||
[submodule "third-party/lua52"] | ||
path = third-party/lua52 | ||
url = https://github.com/lua/lua.git | ||
[submodule "third-party/luajit20"] | ||
path = third-party/luajit20 | ||
url = https://luajit.org/git/luajit.git | ||
[submodule "third-party/luajit21"] | ||
path = third-party/luajit21 | ||
url = https://luajit.org/git/luajit.git | ||
[submodule "third-party/luajit20"] | ||
path = third-party/luajit20 | ||
url = https://luajit.org/git/luajit.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.