Skip to content
Snippets Groups Projects
Commit fe61de81 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

fix : .ps1 script call syntax

parent 1e08dc8c
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
Pipeline #45146 failed
......@@ -9,14 +9,14 @@ classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3"
]
dynamic = ["version"] # defined in tool.setuptools_scm
dynamic = ["version"] # defined in tool.setuptools_scm
[build-system]
requires = ["setuptools>=68", "setuptools-scm", "cmake"]
build-backend = "setuptools.build_meta"
#####################################################
# CIBUILDWHEEL
# CIBUILDWHEEL
[tool.cibuildwheel]
build-frontend = "build"
[tool.cibuildwheel.environment]
......@@ -25,19 +25,18 @@ AIDGE_DEPENDENCIES = "" # format => "dep_1 dep_2 ... dep_n"
[tool.cibuildwheel.linux]
before-build = ["bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"]
[tool.cibuildwheel.windows]
before-build = ["./.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.ps1 --deps ${AIDGE_DEPENDENCIES}"]
before-build = [" .\.gitlab\ci\cibuildwheel_build_deps_before_build_wheel.ps1 --deps ${AIDGE_DEPENDENCIES}"]
#####################################################
# SETUPTOOLS
# SETUPTOOLS
[tool.setuptools]
# packages=["aidge_core", "export"]
[tool.setuptools_scm]
version_file = "_version.py"
#####################################################
# PYLINT
# PYLINT
[tool.pylint.main]
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment