1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

Merge branch 'master' into format-code

This commit is contained in:
Steffen Vogel 2024-02-13 16:25:36 +01:00 committed by GitHub
commit 419e29540e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 18 additions and 12 deletions

View file

@ -8,13 +8,16 @@
"image": "registry.git.rwth-aachen.de/acs/public/villas/node/dev-vscode",
// Uncomment to build the devcontainer locally
// "build": {
// "dockerfile": "${workspaceFolder}/packaging/docker/Dockerfile.fedora",
// "dockerfile": "../packaging/docker/Dockerfile.fedora",
// "target": "dev-vscode",
// "context": ".."
// },
"remoteUser": "villas",
"runArgs": [ "--privileged", "--security-opt", "seccomp=unconfined"],
"runArgs": [
"--privileged",
"--security-opt",
"seccomp=unconfined"
],
"customizations": {
"vscode": {
"extensions": [

View file

@ -12,7 +12,7 @@ VILLASnode is a client/server application to connect simulation equipment and so
- LabView,
- and FPGA models
by using protcols such as:
by using protocols such as:
- IEEE 802.2 Ethernet / IP / UDP,
- ZeroMQ & nanomsg,

View file

@ -8,7 +8,6 @@
#pragma once
#include <algorithm>
#include <bit>
#include <numeric>
#include <optional>
#include <stdint.h>

View file

@ -62,7 +62,7 @@ should_build() {
## Build configuration
# Use shallow git clones to speed up downloads
GIT_OPTS+=" --depth=1"
GIT_OPTS+=" --depth=1 --config advice.detachedHead=false"
# Install destination
PREFIX=${PREFIX:-/usr/local}

View file

@ -3,6 +3,7 @@ Author: Steffen Vogel <post@steffenvogel.de>
SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
SPDX-License-Identifier: Apache-2.0
""" # noqa: E501
import time
from villas.node.node import Node as VILLASnode

View file

@ -20,13 +20,16 @@ classifiers = [
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
]
dependencies = ['linuxfd', 'requests']
dependencies = [
'linuxfd==1.5',
'requests==2.31.0',
]
optional-dependencies.dev = [
'black',
'flake8',
'mypy',
'pytest',
'types-requests',
'black==24.2.0',
'flake8==7.0.0',
'mypy==1.8.0',
'pytest==8.0.0',
'types-requests==2.31.0.20240125',
]
[project.urls]