mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-07 15:35:10 +00:00
ci(deps): bump actions/checkout from 4 to 6 (#223) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ci(deps): bump actions/upload-pages-artifact from 3 to 4 (#225) Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ci(deps): bump actions/upload-artifact from 4 to 6 (#224) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ci(deps): bump actions/configure-pages from 4 to 5 (#222) Bumps [actions/configure-pages](https://github.com/actions/configure-pages) from 4 to 5. - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/configure-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
# unilabos: Production package (depends on unilabos-env + pip unilabos)
|
|
# For production deployment
|
|
|
|
package:
|
|
name: unilabos
|
|
version: 0.10.16
|
|
|
|
source:
|
|
path: ../../unilabos
|
|
target_directory: unilabos
|
|
|
|
build:
|
|
python:
|
|
entry_points:
|
|
- unilab = unilabos.app.main:main
|
|
script:
|
|
- set PIP_NO_INDEX=
|
|
- if: win
|
|
then:
|
|
- copy %RECIPE_DIR%\..\..\MANIFEST.in %SRC_DIR%
|
|
- copy %RECIPE_DIR%\..\..\setup.cfg %SRC_DIR%
|
|
- copy %RECIPE_DIR%\..\..\setup.py %SRC_DIR%
|
|
- pip install %SRC_DIR%
|
|
- if: unix
|
|
then:
|
|
- cp $RECIPE_DIR/../../MANIFEST.in $SRC_DIR
|
|
- cp $RECIPE_DIR/../../setup.cfg $SRC_DIR
|
|
- cp $RECIPE_DIR/../../setup.py $SRC_DIR
|
|
- pip install $SRC_DIR
|
|
|
|
requirements:
|
|
host:
|
|
- python ==3.11.14
|
|
- pip
|
|
- setuptools
|
|
- zstd
|
|
- zstandard
|
|
run:
|
|
- zstd
|
|
- zstandard
|
|
- networkx
|
|
- typing_extensions
|
|
- websockets
|
|
- opentrons_shared_data
|
|
- pint
|
|
- fastapi
|
|
- jinja2
|
|
- requests
|
|
- uvicorn
|
|
- opcua
|
|
- pyserial
|
|
- pandas
|
|
- pymodbus
|
|
- matplotlib
|
|
- pylibftdi
|
|
- uni-lab::unilabos-env ==0.10.16
|
|
|
|
about:
|
|
repository: https://github.com/deepmodeling/Uni-Lab-OS
|
|
license: GPL-3.0-only
|
|
description: "UniLabOS - Production package with minimal ROS2 dependencies"
|