Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
c
d
e
g
h
i
m
n
p
r
s
t
u
v
w
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
+
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
u
v
w
x
~
+
Functions
_
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
x
~
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
p
q
r
s
t
v
w
x
+
Typedefs
c
d
f
h
m
r
s
t
v
Enumerations
Enumerator
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Functions
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
u
v
Typedefs
Enumerations
Enumerator
+
Macros
b
c
d
e
p
r
s
t
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)
tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Sun Jul 2 2023 02:21:51