Skip to content

Commit a1a1c29

Browse files
authored
Merge pull request #871 from sfu-db/revise_doc
docs(clean):revise __init_.py
2 parents 4309f76 + 0893474 commit a1a1c29

File tree

6 files changed

+94
-93
lines changed

6 files changed

+94
-93
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ jobs:
7777

7878
docs-build:
7979
runs-on: ubuntu-latest
80-
needs: build
8180
steps:
8281
- uses: actions/checkout@v2
8382

.github/workflows/release.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,39 @@ on:
66
- release
77

88
jobs:
9-
docs-build:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- uses: actions/checkout@v2
13-
14-
- name: Install dependencies
15-
run: |
16-
pip install poetry
17-
curl -L https://github.com/jgm/pandoc/releases/download/2.11.2/pandoc-2.11.2-1-amd64.deb -o /tmp/pandoc.deb && sudo dpkg -i /tmp/pandoc.deb
18-
19-
- name: Cache venv
20-
uses: actions/cache@v2
21-
with:
22-
path: ~/.cache/pypoetry/virtualenvs
23-
key: ${{ runner.os }}-build-${{ matrix.python }}-${{ secrets.CACHE_VERSION }}-${{ hashFiles('poetry.lock') }}
24-
25-
- name: Install dependencies
26-
run: |
27-
pip install poetry
28-
poetry install
29-
30-
- name: Build docs
31-
run: poetry run sphinx-build -M html docs/source docs/build
32-
33-
- name: Archive docs
34-
uses: actions/upload-artifact@v2
35-
with:
36-
name: docs
37-
path: docs/build/html
9+
# docs-build:
10+
# runs-on: ubuntu-latest
11+
# steps:
12+
# - uses: actions/checkout@v2
13+
14+
# - name: Install dependencies
15+
# run: |
16+
# pip install poetry
17+
# curl -L https://github.com/jgm/pandoc/releases/download/2.11.2/pandoc-2.11.2-1-amd64.deb -o /tmp/pandoc.deb && sudo dpkg -i /tmp/pandoc.deb
18+
19+
# - name: Cache venv
20+
# uses: actions/cache@v2
21+
# with:
22+
# path: ~/.cache/pypoetry/virtualenvs
23+
# key: ${{ runner.os }}-build-${{ matrix.python }}-${{ secrets.CACHE_VERSION }}-${{ hashFiles('poetry.lock') }}
24+
25+
# - name: Install dependencies
26+
# run: |
27+
# pip install poetry
28+
# poetry install
29+
30+
# - name: Build docs
31+
# run: poetry run sphinx-build -M html docs/source docs/build
32+
33+
# - name: Archive docs
34+
# uses: actions/upload-artifact@v2
35+
# with:
36+
# name: docs
37+
# path: docs/build/html
3838

3939
build:
4040
runs-on: ubuntu-latest
41-
needs: docs-build
41+
# needs: docs-build
4242
steps:
4343
- uses: actions/checkout@v2
4444
with:

dataprep/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
logging.basicConfig(level=logging.INFO, format="%(message)s")
1212

13-
__version__ = "0.4.2"
13+
__version__ = "0.4.3"

dataprep/clean/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from .clean_date import clean_date, validate_date
2222

23-
# from .clean_duplication import clean_duplication
23+
from .clean_duplication import clean_duplication
2424

2525
from .clean_currency import clean_currency, validate_currency
2626

0 commit comments

Comments
 (0)