Skip to content

automatically infer the separator in ElkDataset; bump to 0.6.0 #9

automatically infer the separator in ElkDataset; bump to 0.6.0

automatically infer the separator in ElkDataset; bump to 0.6.0 #9

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- '**.md'
- 'examples/*'
branches:
- 'dev'
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.