Skip to content

Commit 356cab0

Browse files
authored
Merge pull request #877 from sfu-db/fix/upgrade_dask
build: drop support for python3.7
2 parents e4302cd + fbf0676 commit 356cab0

File tree

5 files changed

+160
-226
lines changed

5 files changed

+160
-226
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest]
19-
python: ["3.7"]
19+
python: ["3.8"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
with:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python: ["3.7", "3.8", "3.9"]
18+
python: ["3.8", "3.9"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
runs-on: ${{ matrix.os }}
2121
steps:

.github/workflows/release.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -89,24 +89,24 @@ jobs:
8989
- name: Upload wheels
9090
run: poetry publish --username __token__ --password ${{ secrets.PYPI_TOKEN }}
9191

92-
docs-deploy:
93-
runs-on: ubuntu-latest
94-
needs: build
95-
if: ${{ github.event.ref == 'refs/heads/release' }}
96-
steps:
97-
- uses: actions/checkout@v2
92+
# docs-deploy:
93+
# runs-on: ubuntu-latest
94+
# needs: build
95+
# if: ${{ github.event.ref == 'refs/heads/release' }}
96+
# steps:
97+
# - uses: actions/checkout@v2
9898

99-
- name: Download docs
100-
uses: actions/download-artifact@v2
101-
with:
102-
name: docs
103-
path: docs/build/html
99+
# - name: Download docs
100+
# uses: actions/download-artifact@v2
101+
# with:
102+
# name: docs
103+
# path: docs/build/html
104104

105-
- run: echo 'docs.dataprep.ai' > docs/build/html/CNAME
105+
# - run: echo 'docs.dataprep.ai' > docs/build/html/CNAME
106106

107-
- name: Deploy 🚀
108-
uses: JamesIves/github-pages-deploy-action@4.1.5
109-
with:
110-
branch: gh-pages # The branch the action should deploy to.
111-
folder: docs/build/html # The folder the action should deploy.
112-
clean-exclude: dev
107+
# - name: Deploy 🚀
108+
# uses: JamesIves/github-pages-deploy-action@4.1.5
109+
# with:
110+
# branch: gh-pages # The branch the action should deploy to.
111+
# folder: docs/build/html # The folder the action should deploy.
112+
# clean-exclude: dev

0 commit comments

Comments
 (0)