File tree Expand file tree Collapse file tree 6 files changed +94
-93
lines changed Expand file tree Collapse file tree 6 files changed +94
-93
lines changed Original file line number Diff line number Diff line change 77
77
78
78
docs-build :
79
79
runs-on : ubuntu-latest
80
- needs : build
81
80
steps :
82
81
- uses : actions/checkout@v2
83
82
Original file line number Diff line number Diff line change 6
6
- release
7
7
8
8
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
38
38
39
39
build :
40
40
runs-on : ubuntu-latest
41
- needs : docs-build
41
+ # needs: docs-build
42
42
steps :
43
43
- uses : actions/checkout@v2
44
44
with :
Original file line number Diff line number Diff line change 10
10
11
11
logging .basicConfig (level = logging .INFO , format = "%(message)s" )
12
12
13
- __version__ = "0.4.2 "
13
+ __version__ = "0.4.3 "
Original file line number Diff line number Diff line change 20
20
21
21
from .clean_date import clean_date , validate_date
22
22
23
- # from .clean_duplication import clean_duplication
23
+ from .clean_duplication import clean_duplication
24
24
25
25
from .clean_currency import clean_currency , validate_currency
26
26
You can’t perform that action at this time.
0 commit comments