Skip to content

Commit b596a42

Browse files
authored
Merge pull request #96 from ACCLAB/v0.3.0
v0.3.0
2 parents e0c487b + a264080 commit b596a42

File tree

98 files changed

+1006
-419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+1006
-419
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ env:
55
- PYTHON=3.5 BACKEND=agg
66
- PYTHON=3.6 BACKEND=agg
77
- PYTHON=3.7 BACKEND=agg
8-
# - PYTHON=3.8 BACKEND=agg
9-
8+
- PYTHON=3.8 BACKEND=agg
109

1110
before_install:
1211
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The Clear BSD License
22

3-
Copyright (c) 2016-2019 Joses W. Ho
3+
Copyright (c) 2016-2020 Joses W. Ho
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@
66
[![Free-to-view citation](https://zenodo.org/badge/DOI/10.1038/s41592-019-0470-3.svg)](https://rdcu.be/bHhJ4)
77
[![License](https://img.shields.io/badge/License-BSD%203--Clause--Clear-orange.svg)](https://spdx.org/licenses/BSD-3-Clause-Clear.html)
88

9+
## Contents
10+
<!-- TOC depthFrom:1 depthTo:2 withLinks:1 updateOnSave:1 orderedList:0 -->
11+
- [About](#about)
12+
- [Installation](#installation)
13+
- [Usage](#usage)
14+
- [How to cite](#how-to-cite)
15+
- [Bugs](#bugs)
16+
- [Contributing](#contributing)
17+
- [Acknowledgements](#acknowledgements)
18+
- [Testing](#testing)
19+
- [DABEST in other languages](#dabest-in-other-languages)
20+
21+
<!-- /TOC -->
22+
923
## About
1024

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

2640
## Installation
2741

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

3145
You can install this package via `pip`.

dabest/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121

2222
from ._api import load
2323
from ._stats_tools import effsize as effsize
24-
from ._classes import TwoGroupsEffectSize
24+
from ._classes import TwoGroupsEffectSize, PermutationTest
2525

26-
__version__ = "0.2.8"
26+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)