Compare commits

...

3 commits

Author SHA1 Message Date
Julia P 2af14f0272
Update README.md
Fixed typo.
2024-04-23 11:57:15 +02:00
Pfitzer, Julia 294a95f121 Fixed filenames, updated README. 2024-04-23 11:23:57 +02:00
jupfi 7428508be1 Splitting up deployment into different workflow files to avoid timeout. 2024-04-23 06:22:03 +02:00
3 changed files with 81 additions and 10 deletions

View file

@ -0,0 +1,64 @@
name: Build, Test, and Upload Python Package (musllinux)
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
permissions:
contents: read
jobs:
# test:
# uses: ./.github/workflows/ubuntu-python-package.yml # use the callable tests job to run tests
deploy:
runs-on: ubuntu-latest
# needs: [test]
steps:
- name: Update package list
run: |
sudo apt-get update
- name: Install git
run: |
sudo apt-get install -y git
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Prepare Python environment
run: |
python -m venv venv
. ./venv/bin/activate
pip install -U twine cibuildwheel build
- name: Build wheels musllinux
run: |
. ./venv/bin/activate
python -m cibuildwheel --output-dir dist
env:
CIBW_BEFORE_BUILD: ./build_wheel.sh
CIBW_SKIP: "*-manylinux_*"
- name: Publish to PyPI
run: |
. ./venv/bin/activate
python -m twine upload --repository pypi --username __token__ --password ${{ secrets.PYPI }} dist/*
env:
PYPI: ${{ secrets.PYPI }}

View file

@ -1,4 +1,4 @@
name: Build, Test, and Upload Python Package
name: Build, Test, and Upload Python Package (sdist and manylinux)
on:
push:
@ -61,14 +61,6 @@ jobs:
CIBW_BEFORE_BUILD: ./build_wheel.sh
CIBW_SKIP: "*-musllinux_*"
- name: Build wheels musllinux
run: |
. ./venv/bin/activate
python -m cibuildwheel --output-dir dist
env:
CIBW_BEFORE_BUILD: ./build_wheel.sh
CIBW_SKIP: "*-manylinux_*"
- name: Publish to PyPI
run: |
. ./venv/bin/activate

View file

@ -27,6 +27,21 @@ python3 -m venv venv
source venv/bin/activate
```
You can install the Python bindings using pip:
```bash
pip install limedriver
```
---
Alternatively you can clone the repository and install the Python bindings from source:
```bash
git clone <this-repo-url>
cd LimeDriverBindings
```
Ensure that the LimeDriver submodule is initialized:
```bash
@ -51,7 +66,7 @@ import limedriver
Npulses = 1000
# Create a new PyLimeConfig object
config = limedriver.PyLimeConfig(Npulses)
config = limedriver.binding.PyLimeConfig(Npulses)
# Modify the config as needed
config.srate = 1e6