Skip to content

Commit

Permalink
Merge pull request #96 from ACCLAB/v0.3.0
Browse files Browse the repository at this point in the history
v0.3.0
  • Loading branch information
josesho committed Jan 30, 2020
2 parents e0c487b + a264080 commit b596a42
Show file tree
Hide file tree
Showing 98 changed files with 1,006 additions and 419 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -5,8 +5,7 @@ env:
- PYTHON=3.5 BACKEND=agg
- PYTHON=3.6 BACKEND=agg
- PYTHON=3.7 BACKEND=agg
# - PYTHON=3.8 BACKEND=agg

- PYTHON=3.8 BACKEND=agg

before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The Clear BSD License

Copyright (c) 2016-2019 Joses W. Ho
Copyright (c) 2016-2020 Joses W. Ho
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
16 changes: 15 additions & 1 deletion README.md
Expand Up @@ -6,6 +6,20 @@
[![Free-to-view citation](https://zenodo.org/badge/DOI/10.1038/s41592-019-0470-3.svg)](https://rdcu.be/bHhJ4)
[![License](https://img.shields.io/badge/License-BSD%203--Clause--Clear-orange.svg)](https://spdx.org/licenses/BSD-3-Clause-Clear.html)

## Contents
<!-- TOC depthFrom:1 depthTo:2 withLinks:1 updateOnSave:1 orderedList:0 -->
- [About](#about)
- [Installation](#installation)
- [Usage](#usage)
- [How to cite](#how-to-cite)
- [Bugs](#bugs)
- [Contributing](#contributing)
- [Acknowledgements](#acknowledgements)
- [Testing](#testing)
- [DABEST in other languages](#dabest-in-other-languages)

<!-- /TOC -->

## About

DABEST is a package for **D**ata **A**nalysis using **B**ootstrap-Coupled **EST**imation.
Expand All @@ -25,7 +39,7 @@ DABEST powers [estimationstats.com](https://www.estimationstats.com/), allowing

## Installation

This package is tested on Python 3.5, 3.6, and 3.7.
This package is tested on Python 3.5, 3.6, 3.7, and 3.8.
It is highly recommended to download the [Anaconda distribution](https://www.continuum.io/downloads) of Python in order to obtain the dependencies easily.

You can install this package via `pip`.
Expand Down
4 changes: 2 additions & 2 deletions dabest/__init__.py
Expand Up @@ -21,6 +21,6 @@

from ._api import load
from ._stats_tools import effsize as effsize
from ._classes import TwoGroupsEffectSize
from ._classes import TwoGroupsEffectSize, PermutationTest

__version__ = "0.2.8"
__version__ = "0.3.0"

0 comments on commit b596a42

Please sign in to comment.