-
Notifications
You must be signed in to change notification settings - Fork 25
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
26 changed files
with
763 additions
and
590 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,16 +1,21 @@ | ||
# 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=minimum | ||
|
||
# Command to install dependencies | ||
install: pip install -U tox-travis codecov | ||
install: | ||
- pip install -U tox-travis codecov | ||
|
||
after_success: codecov | ||
|
||
# Command to run tests | ||
script: 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
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,29 @@ | ||
## Instructions | ||
|
||
These are instructions to deploy the latest version of **RDT** to [conda](https://docs.conda.io/en/latest/). | ||
It should be done after every new release. | ||
|
||
## Update the recipe | ||
Prior to making the release on PyPI, you should update the meta.yaml to reflect any changes in the dependencies. | ||
Note that you do not need to edit the version number as that is managed by bumpversion. | ||
|
||
## Make the PyPI release | ||
Follow the standard release instructions to make a PyPI release. Then, return here to make the conda release. | ||
|
||
## Build a package | ||
As part of the PyPI release, you will have updated the stable branch. You should now check out the stable | ||
branch and build the conda package. | ||
|
||
```bash | ||
git checkout stable | ||
cd conda | ||
conda build -c sdv-dev -c conda-forge . | ||
``` | ||
|
||
## Upload to Anaconda | ||
Finally, you can upload the resulting package to Anaconda. | ||
|
||
```bash | ||
anaconda login | ||
anaconda upload -u sdv-dev <PATH_TO_PACKAGE> | ||
``` |
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,43 @@ | ||
{% set name = 'rdt' %} | ||
{% set version = '0.2.10.dev1' %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" | ||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
script: "{{ PYTHON }} -m pip install ." | ||
|
||
requirements: | ||
host: | ||
- faker >=1.0.1,<4.15.0 | ||
- numpy >=1.17.4,<2 | ||
- pandas >=1.1,<1.1.5 | ||
- pip | ||
- python | ||
- scipy >=1.4,<2 | ||
- pytest-runner | ||
run: | ||
- faker >=1.0.1,<4.15.0 | ||
- numpy >=1.17.4,<2 | ||
- pandas >=1.1,<1.1.5 | ||
- python | ||
- scipy >=1.4,<2 | ||
|
||
about: | ||
home: "https://github.com/sdv-dev/RDT" | ||
license: MIT | ||
license_family: MIT | ||
license_file: | ||
summary: "Reversible Data Transforms" | ||
doc_url: | ||
dev_url: | ||
|
||
extra: | ||
recipe-maintainers: | ||
- sdv-dev |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
__author__ = """MIT Data To AI Lab""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.2.6' | ||
__version__ = '0.2.10.dev1' | ||
|
||
import numpy as np | ||
import pandas as pd | ||
|
Oops, something went wrong.