Compare commits
No commits in common. "e5d7a38160bf0863b2637e1b24cf406df3f5508f" and "776d14bb3e5b59eae4e6d22e9ad7a647a2e7885f" have entirely different histories.
e5d7a38160
...
776d14bb3e
|
|
@ -514,18 +514,3 @@ deploy python/pypi:
|
||||||
- build python/linux/arm64
|
- build python/linux/arm64
|
||||||
- build python/macos
|
- build python/macos
|
||||||
- build python/windows
|
- build python/windows
|
||||||
|
|
||||||
push github:
|
|
||||||
stage: deploy
|
|
||||||
tags:
|
|
||||||
- linux-build
|
|
||||||
image: alpine:latest
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
||||||
dependencies:
|
|
||||||
- deploy python/pypi
|
|
||||||
needs:
|
|
||||||
- deploy python/pypi
|
|
||||||
script:
|
|
||||||
- apk add git
|
|
||||||
- git push https://$LIBICSNEO_GITHUB_USERNAME:$LIBICSNEO_GITHUB_TOKEN@github.com/intrepidcs/libicsneo.git HEAD:master
|
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,6 @@ void init_device(pybind11::module_& m) {
|
||||||
.def("supports_tc10", &Device::supportsTC10)
|
.def("supports_tc10", &Device::supportsTC10)
|
||||||
.def("request_tc10_wake", &Device::requestTC10Wake)
|
.def("request_tc10_wake", &Device::requestTC10Wake)
|
||||||
.def("request_tc10_sleep", &Device::requestTC10Sleep)
|
.def("request_tc10_sleep", &Device::requestTC10Sleep)
|
||||||
.def("get_tc10_status", &Device::getTC10Status)
|
|
||||||
.def("__repr__", &Device::describe);
|
.def("__repr__", &Device::describe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,9 @@
|
||||||
=========
|
|
||||||
libicsneo
|
libicsneo
|
||||||
=========
|
=========
|
||||||
|
|
||||||
libicsneo is the `Intrepid Control Systems <https://intrepidcs.com/>`_ device
|
|
||||||
communication library. The source code for libicsneo can be found on GitHub:
|
|
||||||
`https://github.com/intrepidcs/libicsneo <https://github.com/intrepidcs/libicsneo>`_
|
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
:caption: Documentation
|
:caption: API Documentation
|
||||||
|
|
||||||
icsneocpp/index
|
icsneocpp/index
|
||||||
icsneopy/index
|
icsneopy/index
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue