-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make release-tag: Merge branch 'master' into stable
- Loading branch information
Showing
114 changed files
with
3,765 additions
and
4,317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
# Config file for automatic testing at travis-ci.org | ||
os: linux | ||
dist: bionic | ||
language: python | ||
python: | ||
- 3.8 | ||
- 3.7 | ||
- 3.6 | ||
- 3.5 | ||
- 3.7 | ||
- 3.8 | ||
env: | ||
- TOXENV=lint | ||
- TOXENV=readme | ||
- TOXENV=pytest | ||
- TOXENV=tutorials | ||
|
||
# Command to install dependencies | ||
addons: | ||
apt: | ||
packages: | ||
- pandoc | ||
install: pip install -U tox-travis codecov | ||
install: | ||
- sudo apt-get update | ||
- pip install -U tox-travis codecov | ||
|
||
after_success: codecov | ||
|
||
# Command to run tests | ||
script: tox | ||
script: travis_wait 60 tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Installing SDMetrics | ||
|
||
## Requirements | ||
|
||
**SDMetrics** has been developed and tested on [Python 3.6, 3.7 and 3.8](https://www.python.org/downloads/) | ||
|
||
Also, although it is not strictly required, the usage of a [virtualenv]( | ||
https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid | ||
interfering with other software installed in the system where **SDMetrics** is run. | ||
|
||
## Install with pip | ||
|
||
The easiest and recommended way to install **SDMetrics** is using [pip]( | ||
https://pip.pypa.io/en/stable/): | ||
|
||
```bash | ||
pip install sdmetrics | ||
``` | ||
|
||
This will pull and install the latest stable release from [PyPi](https://pypi.org/). | ||
|
||
## Install with conda | ||
|
||
**SDMetrics** can also be installed using [conda](https://docs.conda.io/en/latest/): | ||
|
||
```bash | ||
conda install -c sdv-dev -c conda-forge sdmetrics | ||
``` | ||
|
||
This will pull and install the latest stable release from [Anaconda](https://anaconda.org/). | ||
|
||
## Install from source | ||
|
||
If you want to install **SDMetrics** from source you need to first clone the repository | ||
and then execute the `make install` command inside the `stable` branch. Note that this | ||
command works only on Unix based systems like GNU/Linux and macOS: | ||
|
||
```bash | ||
git clone https://github.com/sdv-dev/SDMetrics | ||
cd SDMetrics | ||
git checkout stable | ||
make install | ||
``` | ||
|
||
## Install for development | ||
|
||
If you intend to modify the source code or contribute to the project you will need to | ||
install it from the source using the `make install-develop` command. In this case, we | ||
recommend you to branch from `master` first: | ||
|
||
```bash | ||
git clone [email protected]:sdv-dev/SDMetrics | ||
cd SDMetrics | ||
git checkout master | ||
git checkout -b <your-branch-name> | ||
make install-develp | ||
``` | ||
|
||
For more details about how to contribute to the project please visit the [Contributing Guide]( | ||
CONTRIBUTING.rst). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.