diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 123c156..4c57b2a 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -34,7 +34,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "windows-latest", "macos-latest"] - python-version: ["3.9", "3.13"] + python-version: ["3.8", "3.13"] steps: - uses: actions/checkout@v4 # install the calculate-liam package including the optional test dependencies diff --git a/calculate-liam/meta.yaml b/calculate-liam/meta.yaml index 599c65b..26ee8cd 100644 --- a/calculate-liam/meta.yaml +++ b/calculate-liam/meta.yaml @@ -1,5 +1,5 @@ {% set name = "calculate-liam" %} -{% set version = "0.0.3" %} +{% set version = "0.0.8" %} package: name: {{ name|lower }} diff --git a/calculate-liam/pyproject.toml b/calculate-liam/pyproject.toml index c131d14..1898f78 100644 --- a/calculate-liam/pyproject.toml +++ b/calculate-liam/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "calculate-liam" -version = "0.0.7" +version = "0.0.8" dependencies = ["click", "numpy"] authors = [ { name="Liam Keegan", email="liam@keegan.ch" }, diff --git a/docs/index.md b/docs/index.md index 7f0921b..bfe2726 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,6 +23,7 @@ In this course we will learn how to package a Python library, how to publish it - [pybind11-numpy-example](https://github.com/ssciwr/pybind11-numpy-example) - a simple example of packaging including c++ compiled extensions - an example [meta.yaml](https://github.com/conda-forge/staged-recipes/pull/25040/files) conda-forge recipe for this package + - the resulting [conda-forge feedstock](https://github.com/conda-forge/pybind11-numpy-example-feedstock) for this package - [hammingdist](https://github.com/ssciwr/hammingdist) - a more advanced example with a compiled extension making use of OpenMP and CUDA diff --git a/docs/slides/slides.pdf b/docs/slides/slides.pdf index 393d018..42f467b 100644 Binary files a/docs/slides/slides.pdf and b/docs/slides/slides.pdf differ