Skip to content

Commit 97c9f3c

Browse files
committed
fix version attempt
1 parent a012ede commit 97c9f3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

comocma/como.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from __future__ import division, print_function, unicode_literals
1414
__author__ = "Cheikh Toure and Nikolaus Hansen"
1515
__license__ = "BSD 3-clause"
16-
__version__ = "0.5.2"
16+
__version__ = "0.6.0"
1717
del division, print_function, unicode_literals
1818

1919
import ast

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Repository = "https://github.com/CMA-ES/pycma.git"
8484
"Bug Tracker" = "https://github.com/CMA-ES/pycma/issues"
8585

8686
[tool.setuptools.dynamic]
87-
version = {attr = "comocma.__version__"} # any module attribute compatible with ast.literal_eval
87+
version = {attr = "comocma.como.__version__"} # any module attribute compatible with ast.literal_eval
8888

8989
# readme = {file = ["README.txt"]}
9090
# In the dynamic table, the attr directive [3] will read an attribute from the given module [4], while file will read the contents of all given files and concatenate them in a single string.

0 commit comments

Comments
 (0)