diff --git a/.travis.yml b/.travis.yml index 342e328..5dc09b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ os: - osx - linux julia: - - 0.7 + - 1.1 notifications: email: false # script: @@ -11,4 +11,4 @@ notifications: # - julia -e 'Pkg.clone(pwd());' # - julia -e 'Pkg.build("AffineInvariantMCMC"); Pkg.test("AffineInvariantMCMC"; coverage=true)' after_success: - - julia -e 'cd(Pkg.dir("AffineInvariantMCMC")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())' \ No newline at end of file + - julia -e ''import Pkg; import AffineInvariantMCMC; cd(joinpath(dirname(pathof(AffineInvariantMCMC)))); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())' \ No newline at end of file diff --git a/COPYING.md b/COPYING.md index aea7c20..7cccd3f 100644 --- a/COPYING.md +++ b/COPYING.md @@ -3,10 +3,12 @@ MADS: Model Analysis & Decision Support in Julia (Mads.jl v1.0) 2016 Licensing: GPLv3: http://www.gnu.org/licenses/gpl-3.0.html -Copyright 2016. Los Alamos National Security, LLC. All rights reserved. +© (or copyright) 2019. Triad National Security, LLC. All rights reserved. -Copyright 2016. Los Alamos National Security, LLC. This material was produced under U.S. Government contract DE-AC52-06NA25396 for Los Alamos National Laboratory (LANL), which is operated by Los Alamos National Security, LLC for the U.S. Department of Energy. The U.S. Government has rights to use, reproduce, and distribute this software. NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified to produce derivative works, such modified software should be clearly marked, so as not to confuse it with the version available from LANL. +This program was produced under U.S. Government contract 89233218CNA000001 for Los Alamos National Laboratory (LANL), which is operated by Triad National Security, LLC for the U.S. Department of Energy/National Nuclear Security Administration. -Additionally, this program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Accordingly, this program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +All rights in the program are reserved by Triad National Security, LLC, and the U.S. Department of Energy/National Nuclear Security Administration. The Government is granted for itself and others acting on its behalf a nonexclusive, paid-up, irrevocable worldwide license in this material to reproduce, prepare derivative works, distribute copies to the public, perform publicly and display publicly, and to permit others to do so. + +This is open source software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Full text of the GPLv3License can be found in the License file in the main development branch of the repository and at http://www.gnu.org/licenses/gpl-3.0.html. LA-CC-15-080; Copyright Number Assigned: C16008 diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..9d474f7 --- /dev/null +++ b/Project.toml @@ -0,0 +1,17 @@ +name = "AffineInvariantMCMC" +uuid = "a0f608ac-68d0-5108-ad9a-0cdca73324f3" +version = "0.5.0" + +[deps] +RobustPmap = "27aeedcb-f738-516b-a0b8-3211cf1146e5" + +[compat] +julia = "≥ 1.1.0" + +[extras] +Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" +Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["Statistics", "Test", "Random"]