diff --git a/.travis.yml b/.travis.yml index 87043b1c..79e704eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,3 @@ -env: - global: - - mp-units:CONAN_RUN_TESTS: 1 - linux: &linux os: linux dist: xenial diff --git a/build.py b/build.py index 3db432f9..0d869ce0 100644 --- a/build.py +++ b/build.py @@ -8,10 +8,13 @@ if __name__ == "__main__": stable_branch_pattern = r"v\d+\.\d+\.\d+.*", # dependencies - remotes = "https://api.bintray.com/conan/bincrafters/public-conan, https://api.bintray.com/conan/twonington/public-conan", + remotes = [ + ("https://api.bintray.com/conan/bincrafters/public-conan", True, "bincrafters"), + ("https://api.bintray.com/conan/twonington/public-conan", True, "linear-algebra") + ] build_policy = ["outdated"], - upload_dependencies="all", - pip_install=["sphinx", "recommonmark", "breathe"], + upload_dependencies = "all", + pip_install = ["sphinx", "recommonmark", "breathe"], # build configurations archs = ["x86_64"], # limit to 64-bit only