Skip to content

Commit

Permalink
Merge branch 'main' into joseba/hypothesis-testing-correction
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalch authored Dec 14, 2023
2 parents 00f2958 + 54b9297 commit 158b616
Show file tree
Hide file tree
Showing 15 changed files with 686 additions and 351 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: pypi

on:
release:
types: [published]
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PUNCC_TO_PYPI }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Virtual environment
puncc-dev-env/
puncc-user-env/
.venv
.venv/

# Local demo files
**demo/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Documentation is available [**online**](https://deel-ai.github.io/puncc/index.ht
You can directly install the library using pip:

```bash
pip install git+https://github.com/deel-ai/puncc
pip install puncc
```

<!--
Expand Down
291 changes: 0 additions & 291 deletions deel/puncc/api/README.md

This file was deleted.

Loading

0 comments on commit 158b616

Please sign in to comment.