Update libloot to v0.14.7

This commit is contained in:
Oliver Hamlet
2019-06-16 13:03:53 +01:00
parent d356ac2445
commit b393507657
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -55,12 +55,12 @@ add_subdirectory(${PYBIND11_EXTRACTED_PATH})
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
if (NOT "${CMAKE_GENERATOR}" MATCHES "(Win64|IA64)")
set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.5/libloot-0.14.5-0-g68ecc02_dev-win32.7z")
set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.7/libloot-0.14.7-0-g1878d48_dev-win32.7z")
else()
set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.5/libloot-0.14.5-0-g68ecc02_dev-win64.7z")
set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.7/libloot-0.14.7-0-g1878d48_dev-win64.7z")
endif()
else()
set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.5/libloot.tar.xz")
set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.7/libloot.tar.xz")
endif()
ExternalProject_Add(libloot
+1 -1
View File
@@ -346,5 +346,5 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'loot_api': ('http://loot.readthedocs.io/en/0.14.5/', None),
'loot_api': ('http://loot.readthedocs.io/en/0.14.7/', None),
}
+2 -2
View File
@@ -51,9 +51,9 @@ class TestLootApi(GameFixture):
def test_version(self):
self.assertEqual(Version.major, 0)
self.assertEqual(Version.minor, 14)
self.assertEqual(Version.patch, 5)
self.assertEqual(Version.patch, 7)
self.assertNotEqual(Version.revision, u'')
self.assertEqual(Version.string(), "0.14.5")
self.assertEqual(Version.string(), "0.14.7")
def test_wrapper_version(self):
self.assertEqual(WrapperVersion.major, 4)