Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
erikfrojdh committed Sep 4, 2024
1 parent f1401de commit c3473b9
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
os: ["ubuntu-latest", ]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
Expand All @@ -23,4 +24,4 @@ jobs:
run: pwd
- name: Build
shell: bash -el {0}
run: conda build ../conda-recipe
run: conda build .
1 change: 1 addition & 0 deletions conda-recipe/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python setup.py install
37 changes: 37 additions & 0 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package:
name: reqrep
version: "{{ load_setup_py_data().version }}"

build:
noarch: python


source:
path: ..

requirements:
build:
- python
- setuptools

run:
- python
- rich
- pyzmq

test:
source_files:
- tests/
imports:
- reqrep
commands:
- python -m pytest
requires:
- pytest


about:
home: https://github.com/slsdetectorgroup/reqrep
license: MIT
license_family: MIT
summary: Simple remote procedure call using ZMQ REQ/REP

0 comments on commit c3473b9

Please sign in to comment.