Update LOOT API to v0.10.1

This commit is contained in:
Oliver Hamlet
2016-11-13 15:42:41 +00:00
parent 1fb6502293
commit 8685762ed9
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -49,9 +49,9 @@ add_subdirectory(${PYBIND11_EXTRACTED_PATH})
#######################################
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.0-0-g7b97241_dev.7z")
set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.1-0-gd8f8dc4_master.7z")
else()
set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.0-0-g7b97241_0.10.0.tar.xz")
set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.1-0-gd8f8dc4_master.tar.xz")
endif()
ExternalProject_Add(loot-api-c++
+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.10.0/', None),
'loot_api': ('http://loot.readthedocs.io/en/0.10.1/', None),
}
+2 -2
View File
@@ -38,9 +38,9 @@ class TestLootApi(GameFixture):
def test_version(self):
self.assertEqual(Version.major, 0)
self.assertEqual(Version.minor, 10)
self.assertEqual(Version.patch, 0)
self.assertEqual(Version.patch, 1)
self.assertNotEqual(Version.revision, u'')
self.assertEqual(Version.string(), "0.10.0")
self.assertEqual(Version.string(), "0.10.1")
def test_wrapper_version(self):
self.assertEqual(WrapperVersion.major, 1)