Skip to content

Commit

Permalink
Merge pull request #106 from pcubillos/newyear
Browse files Browse the repository at this point in the history
Newyear
  • Loading branch information
pcubillos authored Jan 17, 2019
2 parents e7be201 + bd09563 commit 2b03a67
Show file tree
Hide file tree
Showing 26 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015-2018 Patricio Cubillos and contributors.
Copyright (c) 2015-2019 Patricio Cubillos and contributors.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions MCcubed/VERSION.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

# MC3 Version:
MC3_VER = 2 # Major version
MC3_MIN = 3 # Minor version
MC3_REV = 22 # Revision
MC3_REV = 23 # Revision
2 changes: 1 addition & 1 deletion MCcubed/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ['mcmc', 'fit', 'mc', 'plots', 'utils', 'rednoise']
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/fit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

from .modelfit import *
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/fit/modelfit.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["modelfit", "residuals"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/mc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

from .driver import *
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/mc/chain.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

import sys
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/mc/driver.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["mcmc", "parse"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/mc/gelman_rubin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["gelmanrubin"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/mc/mcmc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ =["mcmc"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/plots/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

from .mcplots import __all__
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/plots/mcplots.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["trace", "pairwise", "histogram", "RMS", "modelfit", "subplotter"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/rednoise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["binrms", "prayer"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/rednoise/prayer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

import sys
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

from .mcutils import *
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/utils/log.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["Log"]
Expand Down
2 changes: 1 addition & 1 deletion MCcubed/utils/mcutils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

__all__ = ["parray", "saveascii", "loadascii", "savebin", "loadbin",
Expand Down
2 changes: 1 addition & 1 deletion docs/license.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ License

The MIT License (MIT)

Copyright (c) 2015-2018 Patricio Cubillos and Collaborators
Copyright (c) 2015-2019 Patricio Cubillos and Collaborators

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion mc3.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /usr/bin/env python

# Copyright (c) 2015-2018 Patricio Cubillos and contributors.
# Copyright (c) 2015-2019 Patricio Cubillos and contributors.
# MC3 is open-source software under the MIT license (see LICENSE).

import sys
Expand Down
2 changes: 1 addition & 1 deletion src_c/binarray.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

#include <Python.h>
Expand Down
2 changes: 1 addition & 1 deletion src_c/chisq.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

#include <Python.h>
Expand Down
2 changes: 1 addition & 1 deletion src_c/dwt.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

#include <Python.h>
Expand Down
2 changes: 1 addition & 1 deletion src_c/include/ind.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

/* Definitions for indexing Numpy arrays: */
Expand Down
2 changes: 1 addition & 1 deletion src_c/include/stats.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

/******************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src_c/include/wavelet.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

/**********************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src_c/timeavg.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2018 Patricio Cubillos and contributors.
// Copyright (c) 2015-2019 Patricio Cubillos and contributors.
// MC3 is open-source software under the MIT license (see LICENSE).

#include <Python.h>
Expand Down

0 comments on commit 2b03a67

Please sign in to comment.