Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Houssem ROUIS
aidge_core
Commits
8609819d
Commit
8609819d
authored
11 months ago
by
Grégoire Kubler
Browse files
Options
Downloads
Patches
Plain Diff
fix : various minor bugs
parent
f40b3d45
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
+1
-1
1 addition, 1 deletion
.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
MANIFEST.in
+0
-2
0 additions, 2 deletions
MANIFEST.in
pyproject.toml
+2
-2
2 additions, 2 deletions
pyproject.toml
setup.py
+2
-0
2 additions, 0 deletions
setup.py
with
5 additions
and
5 deletions
.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
+
1
−
1
View file @
8609819d
...
@@ -5,7 +5,7 @@ if [[ $repo == "" ]]; then # case for aidge_ core
...
@@ -5,7 +5,7 @@ if [[ $repo == "" ]]; then # case for aidge_ core
mkdir
-p
build
# creating build if its not already there to hold the build of cpp files
mkdir
-p
build
# creating build if its not already there to hold the build of cpp files
rm
-rf
build/
*
# build from scratch
rm
-rf
build/
*
# build from scratch
else
else
for
repo
in
$AIGE_DEPENDENCIES
;
do
# case for other projects
for
repo
in
$AI
D
GE_DEPENDENCIES
;
do
# case for other projects
REPO_PATH
=
$(
find /host/home/
-type
d
-name
$repo
\
REPO_PATH
=
$(
find /host/home/
-type
d
-name
$repo
\
-not
-path
'*install*'
\
-not
-path
'*install*'
\
-not
-path
'*.git*'
\
-not
-path
'*.git*'
\
...
...
This diff is collapsed.
Click to expand it.
MANIFEST.in
+
0
−
2
View file @
8609819d
include project_name.txt
recursive-include aidge_core *.py
recursive-include aidge_core *.py
recursive-include include *.hpp
recursive-include include *.hpp
recursive-include src *.cpp
recursive-include src *.cpp
This diff is collapsed.
Click to expand it.
pyproject.toml
+
2
−
2
View file @
8609819d
[project]
[project]
name
=
"aidge_core"
name
=
"aidge_core"
description
=
"Core implementations of the operators and graph of aidge framework"
description
=
"Core implementations of the operators and graph of aidge framework"
dynamic
=
[
"version"
]
# defined in tool.setuptools_scm
dependencies
=
[
"numpy"
]
dependencies
=
[
"numpy"
]
requires-python
=
">
=
3.7
"
requires-python
=
">
=
3.7
"
readme
=
"README.md"
readme
=
"README.md"
...
@@ -10,6 +9,7 @@ classifiers = [
...
@@ -10,6 +9,7 @@ classifiers = [
"Development Status :: 2 - Pre-Alpha"
,
"Development Status :: 2 - Pre-Alpha"
,
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3"
]
]
dynamic
=
[
"version"
]
# defined in tool.setuptools_scm
[build-system]
[build-system]
requires
=
["setuptools>
=
68
", "
setuptools-scm
", "
cmake
"]
requires
=
["setuptools>
=
68
", "
setuptools-scm
", "
cmake
"]
...
@@ -22,7 +22,7 @@ build-frontend = "build"
...
@@ -22,7 +22,7 @@ build-frontend = "build"
before-build
=
[
"bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"
]
before-build
=
[
"bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"
]
[tool.cibuildwheel.environment]
[tool.cibuildwheel.environment]
# aidge_core do not rely on any aidge dependency, hence this string is empty
# aidge_core do not rely on any aidge dependency, hence this string is empty
AIGE_DEPENDENCIES
=
""
# format => "dep_1 dep_2 ... dep_n"
AI
D
GE_DEPENDENCIES
=
""
# format => "dep_1 dep_2 ... dep_n"
#####################################################
#####################################################
# SETUPTOOLS
# SETUPTOOLS
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
0
View file @
8609819d
...
@@ -69,6 +69,8 @@ class CMakeBuild(build_ext):
...
@@ -69,6 +69,8 @@ class CMakeBuild(build_ext):
f
"
-DCMAKE_BUILD_TYPE=
{
compile_type
}
"
,
f
"
-DCMAKE_BUILD_TYPE=
{
compile_type
}
"
,
"
-DPYBIND=ON
"
,
"
-DPYBIND=ON
"
,
"
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
"
,
"
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
"
,
"
-DTEST=OFF
"
,
"
-DCOVERAGE=OFF
"
]
]
)
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment