Skip to content

Commit

Permalink
Merge pull request #23 from uber/add_readthedocs
Browse files Browse the repository at this point in the history
add .readthedocs.yml. rename docs/requirements-docs.txt
  • Loading branch information
jeongyoonlee committed Aug 13, 2019
2 parents 61d9864 + 6a28b5e commit f7b361d
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 92 deletions.
15 changes: 15 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.6
install:
- requirements: docs/requirements.txt
87 changes: 0 additions & 87 deletions Makefile

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<div align="center">
<a href="https://github.com/uber/causalml"> <img width="380px" height="140px" src="docs/_static/img/causalml_logo.png"></a>
<a href="https://github.com/uber/causalml"> <img width="380px" height="140px" src="https://raw.githubusercontent.com/uber/causalml/master/docs/_static/img/causalml_logo.png"></a>
</div>

------------------------------------------------------

[![PyPI Version](https://badge.fury.io/py/causalml.svg)](https://pypi.org/project/causalml/)
[![Build Status](https://travis-ci.com/uber/causalml.svg?token=t7jFKh1sKGtbqHWp2sGn&branch=master)](https://travis-ci.com/uber/causalml)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3015/badge)](https://bestpractices.coreinfrastructure.org/projects/3015)

Expand Down
2 changes: 1 addition & 1 deletion causalml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
name = 'causalml'
__version__ = '0.2.0'
__version__ = '0.2.1'
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Changelog
=========

0.2.0 (unreleased)
0.2.0 (2019-08-12)
------------------

- Add `optimize.PolicyLearner` based on Athey and Wager 2017 :cite:`athey2017efficient`
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
# the built documents.
#
# The short X.Y version.
# version = causalml.__version__
version = causalml.__version__
# The full version, including alpha/beta/rc tags.
# release = causalml.__version__

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

setup(
name="causalml",
version="0.2.0",
version="0.2.1",
author="Huigang Chen, Totte Harinen, Jeong-Yoon Lee, Mike Yung, Zhenyu Zhao",
author_email="",
description="Python Package for Uplift Modeling and Causal Inference with Machine Learning Algorithms",
Expand Down

0 comments on commit f7b361d

Please sign in to comment.