Skip to content

Commit

Permalink
removed mention of master branch (#37)
Browse files Browse the repository at this point in the history
Co-authored-by: rkobrosly <[email protected]>
  • Loading branch information
ronikobrosly and rkobrosly authored Feb 10, 2021
1 parent 894336d commit f240019
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# causal-curve

[![build status](http://img.shields.io/travis/ronikobrosly/causal-curve/master.svg?style=flat)](https://travis-ci.org/ronikobrosly/causal-curve)
[![codecov](https://codecov.io/gh/ronikobrosly/causal-curve/branch/master/graph/badge.svg)](https://codecov.io/gh/ronikobrosly/causal-curve)
[![build status](http://img.shields.io/travis/ronikobrosly/causal-curve/main.svg?style=flat)](https://travis-ci.org/ronikobrosly/causal-curve)
[![codecov](https://codecov.io/gh/ronikobrosly/causal-curve/branch/main/graph/badge.svg)](https://codecov.io/gh/ronikobrosly/causal-curve)
[![DOI](https://zenodo.org/badge/256017107.svg)](https://zenodo.org/badge/latestdoi/256017107)

Python tools to perform causal inference when the treatment of interest is continuous.
Expand Down Expand Up @@ -49,7 +49,7 @@ Available via PyPI:
You can also get the latest version of causal-curve by cloning the repository::

```
git clone -b master https://github.com/ronikobrosly/causal-curve.git
git clone -b main https://github.com/ronikobrosly/causal-curve.git
cd causal-curve
pip install .
```
Expand Down
2 changes: 1 addition & 1 deletion causal_curve/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Core:
def __init__(self):
pass

__version__ = "1.0.4"
__version__ = "1.0.5"

def get_params(self):
"""Returns a dict of all of the object's user-facing parameters
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
Change Log
==========

Version 1.0.5
-------------
- Removed `master` branch, replaced with `main`
- Removed all mention of `master` branch from documentation

Version 1.0.4
-------------
- Fixed TMLE plot and code errors in documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Roni Kobrosly"

# The full version, including alpha/beta/rc tags
release = "1.0.4"
release = "1.0.5"

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pull request:
your changes and switch to it::

git fetch upstream
git checkout -b my-feature upstream/master
git checkout -b my-feature upstream/main

where ``my-feature`` is the name of your new branch (it's good practice to have
an explicit name). You can now start making changes.
Expand All @@ -108,7 +108,7 @@ pull request:

8. Create a pull request from your work. The base fork is the fork you
would like to merge changes into, that is ``ronikobrosly/causal-curve`` on the
``master`` branch. The head fork is the repository where you made your
``main`` branch. The head fork is the repository where you made your
changes, that is ``yourusername/causal-curve`` on the ``my-feature`` branch.
Add a title and a description of your pull request, then click on
**Create Pull Request**.
Expand Down
2 changes: 1 addition & 1 deletion docs/full_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Health data: generating causal curves and examining mediation

To provide an end-to-end example of the sorts of analyses `cause-curve` can be used for, we'll
begin with a health topic. A notebook containing the pipeline to produce the following
output `is available here <https://github.com/ronikobrosly/causal-curve/blob/master/examples/NHANES_BLL_example.ipynb>`_.
output `is available here <https://github.com/ronikobrosly/causal-curve/blob/main/examples/NHANES_BLL_example.ipynb>`_.
Note: Specific examples of the individual `causal-curve` tools with
code are available elsewhere in this documentation.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="causal-curve",
version="1.0.4",
version="1.0.5",
author="Roni Kobrosly",
author_email="[email protected]",
description="A python library with tools to perform causal inference using \
Expand Down

0 comments on commit f240019

Please sign in to comment.