palisade-development: change fppe-logreg variant to point to a stable tag instead of a branch (#28717)

Co-authored-by: John Wohlbier <jgwohlbier@sei.cmu.edu>
This commit is contained in:
John Wohlbier 2022-02-14 05:18:38 -05:00 committed by GitHub
parent b0658b8b03
commit 9649246764
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,10 +29,10 @@ class PalisadeDevelopment(CMakePackage):
maintainers = ['wohlbier'] maintainers = ['wohlbier']
version('feature-fixed-point-encoding', version('feature-fixed-point-encoding',
branch='feature-fixed-point-encoding') branch='feature-fixed-point-encoding', submodules=True)
version('fppe-logreg', version('fppe-logreg-v1.0',
branch='fppe-logreg') tag='fppe-logreg-v1.0', submodules=True)
version('master', branch='master', preferred=True) version('master', branch='master', preferred=True, submodules=True)
variant('shared', default=True, description='Build shared library.') variant('shared', default=True, description='Build shared library.')
variant('static', default=True, description='Build static library.') variant('static', default=True, description='Build static library.')