Skip to content

Commit

Permalink
Merge branch 'main' into onnx
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescMartiEscofetQC committed Jul 4, 2024
2 parents a33e419 + 680553f commit 301449a
Show file tree
Hide file tree
Showing 5 changed files with 1,781 additions and 814 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,24 @@ jobs:
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up pixi
uses: prefix-dev/[email protected]
- name: Build
run: |
pixi run build
- uses: actions/upload-artifact@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
# TODO: Build and upload to PyPI.
name: artifact
path: dist/*

upload_pypi:
name: Upload to PyPI
needs: [build]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
- uses: pypa/[email protected]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ or via conda-forge with
```bash
$ conda install metalearners -c conda-forge
```

## Development

Development instructions can be found [here](https://metalearners.readthedocs.io/en/latest/development.html).
55 changes: 0 additions & 55 deletions conda.recipe/recipe.yaml

This file was deleted.

Loading

0 comments on commit 301449a

Please sign in to comment.