Skip to content

Commit

Permalink
[post-release] in CODEGEN __init__.py, replace (1,00,01) by (1,0,1) a…
Browse files Browse the repository at this point in the history
…s leading zeros in decimal integer literals are not permitted (madgraph5#1013)
  • Loading branch information
valassi committed Oct 3, 2024
1 parent 18ed066 commit e80938b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@
__author__ = 'Andrea Valassi'
__email__ = '[email protected]'

__version__ = (1,00,01) # NB the release infrastructure expects 1-digit major and 2-digit minor and patch versions (n,nn,nn)
# Plugin version (major,minor,patch) where major>1, 0<=minor<=99 and 0<=patch<=99
# The release infrastructure expects 'vN.NN.NN' tags with 1-digit major and 2-digit minor and patch versions
# and it takes care of converting the python tuple '(1,0,1)' into a version string 'v1.00.01'
# NB! Do not use '(1,00,01)' here: leading zeros in decimal integer literals are not permitted in python (#1013)
__version__ = (1,0,1)

minimal_mg5amcnlo_version = (3,6,0)
maximal_mg5amcnlo_version = (1000,1000,1000)
Expand Down

0 comments on commit e80938b

Please sign in to comment.