## Aug 11 Agenda * db key fixes * Almost complete set of requirements, to be written up a bug / epic: https://hackmd.io/0BcyTTltQ3qXZal9mDws2w * Mike will write an epic for the auth token key (main issue currently: different on each pulp-api node) * fao89 testing the slurp module, useful for both * post-release issue on galaxy * https://pypi.org/project/semantic-version/ * de-coupling pulp_installer z-stream from pulpcore z-stream would also fix it * Agreed: We will land the de-coupling within the 3.15.z release stream, rather than at 3.16.0. * Mike will work on this (new convention, and getting release out the door) if build team / AH team are not OK with waiting for the de-coupling.
```python= In [1]: import semantic_version In [2]: semantic_version.Version("3.14.0") > semantic_version.Version("3.14.0-1" ...: ) Out[2]: True In [3]: semantic_version.Version("3.14.0") < semantic_version.Version("3.14.0-1") Out[3]: False In [4]: semantic_version.Version("3.14.0") > semantic_version.Version("3.14.0-post") Out[4]: True In [5]: semantic_version.Version("3.14.0") > semantic_version.Version(" 3.14.0.post") --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-6-24cbe611d9e3> in <module> ----> 1 semantic_version.Version("3.14.0") > semantic_version.Version(" 3.14.0.post") ~/.pyenv/versions/3.9.1/envs/venv/lib/python3.9/site-packages/semantic_version/base.py in __init__(self, version_string, major, minor, patch, prerelease, build, partial) 103 104 if has_text: --> 105 major, minor, patch, prerelease, build = self.parse(version_string, partial) 106 else: 107 # Convenience: allow to omit prerelease/build. ~/.pyenv/versions/3.9.1/envs/venv/lib/python3.9/site-packages/semantic_version/base.py in parse(cls, version_string, partial, coerce) 309 match = version_re.match(version_string) 310 if not match: --> 311 raise ValueError('Invalid version string: %r' % version_string) 312 313 major, minor, patch, prerelease, build = match.groups() ValueError: Invalid version string: '3.14.0.post' ``` -- Mike DePaulo He / Him / His Service Reliability Engineer, Pulp Red Hat <https://www.redhat.com/> IM: mikedep333 GPG: 51745404 <https://www.redhat.com/>
_______________________________________________ Pulp-dev mailing list Pulp-dev@redhat.com https://listman.redhat.com/mailman/listinfo/pulp-dev