Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
i
l
m
n
p
q
r
s
t
u
v
w
x
y
+
Functions
_
a
c
d
e
f
g
i
m
n
p
r
s
t
u
+
Variables
_
a
b
c
d
e
i
l
m
n
p
q
r
s
t
v
w
x
y
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
x
y
~
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
~
+
Variables
b
c
d
e
f
i
j
l
m
n
o
p
s
t
v
w
x
y
+
Typedefs
_
a
b
c
d
e
f
i
k
l
m
n
p
q
r
s
t
v
Enumerator
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
e
f
g
i
l
m
n
p
r
s
t
v
z
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
+
Macros
_
b
e
n
p
cmake
pyproject.py
Go to the documentation of this file.
1
#!/usr/bin/env python3
2
import
sys
3
4
try
:
5
import
tomlkit
6
except
ImportError
as
e:
7
print
(
8
"tomlkit not found. Please make sure to install the package.\n"
9
"If it is already installed, make sure that it is included in the search path."
10
)
11
raise
e
12
13
14
def
update_pyproject_version
(version):
15
with open(
"pyproject.toml"
)
as
f:
16
doc = tomlkit.load(f)
17
if
"project"
not
in
doc
or
"version"
not
in
doc[
"project"
]:
18
print
(
"pyproject.toml doesn't contain project / version"
)
19
return
20
doc[
"project"
][
"version"
] = version
21
with open(
"pyproject.toml"
,
"w"
)
as
f:
22
tomlkit.dump(doc, f)
23
24
25
if
__name__ ==
"__main__"
:
26
if
len(sys.argv) == 2:
27
update_pyproject_version
(sys.argv[1])
28
else
:
29
print
(
"you must provide the version as argument."
)
30
exit(1)
pyproject.update_pyproject_version
def update_pyproject_version(version)
Definition:
pyproject.py:14
print
void print(const Tensor &tensor)
Definition:
tensor.cpp:35
eigenpy
Author(s): Justin Carpentier, Nicolas Mansard
autogenerated on Fri Jun 2 2023 02:10:26