-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md * Bump argx to 0.2.10 * Add Dockerfile for codesandbox * Bump pandas to v2 * Fix linting * 🔖 0.11.0 * Update CHANGELOG.md * Fix CI
- Loading branch information
Showing
8 changed files
with
345 additions
and
344 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM python:3.10.12 | ||
|
||
RUN apt-get update && apt-get install -y fish && \ | ||
pip install -U pip && \ | ||
pip install poetry && \ | ||
poetry config virtualenvs.create false && \ | ||
chsh -s /usr/bin/fish |
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 |
---|---|---|
|
@@ -32,33 +32,33 @@ jobs: | |
mkdocs gh-deploy --clean --force | ||
if: success() | ||
|
||
fix-index: | ||
needs: docs | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.10"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: gh-pages | ||
- name: Fix index.html | ||
run: | | ||
echo ':: head of index.html - before ::' | ||
head index.html | ||
sed -i '1,5{/^$/d}' index.html | ||
echo ':: head of index.html - after ::' | ||
head index.html | ||
if: success() | ||
- name: Commit changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git commit -m "Add changes" -a | ||
if: success() | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: gh-pages | ||
if: success() | ||
# fix-index: | ||
# needs: docs | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# python-version: ["3.10"] | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# with: | ||
# ref: gh-pages | ||
# - name: Fix index.html | ||
# run: | | ||
# echo ':: head of index.html - before ::' | ||
# head index.html | ||
# sed -i '1,5{/^$/d}' index.html | ||
# echo ':: head of index.html - after ::' | ||
# head index.html | ||
# if: success() | ||
# - name: Commit changes | ||
# run: | | ||
# git config --local user.email "[email protected]" | ||
# git config --local user.name "GitHub Action" | ||
# git commit -m "Add changes" -a | ||
# if: success() | ||
# - name: Push changes | ||
# uses: ad-m/github-push-action@master | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# branch: gh-pages | ||
# if: success() |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Provide version of pipen""" | ||
|
||
__version__ = "0.10.6" | ||
__version__ = "0.11.0" |
Oops, something went wrong.