locust 2.31.5.dev3__py3-none-any.whl → 2.31.5.dev79__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
locust/_version.py CHANGED
@@ -14,7 +14,7 @@ __version_tuple__: VERSION_TUPLE
14
14
  version_tuple: VERSION_TUPLE
15
15
 
16
16
 
17
- __version__ = "2.31.5.dev3"
17
+ __version__ = "2.31.5.dev79"
18
18
  version = __version__
19
- __version_tuple__ = (2, 31, 5, "dev3")
19
+ __version_tuple__ = (2, 31, 5, "dev79")
20
20
  version_tuple = __version_tuple__
locust/argument_parser.py CHANGED
@@ -715,7 +715,7 @@ Typically ONLY these options (and --locustfile) need to be specified on workers,
715
715
  "-V",
716
716
  action="version",
717
717
  help="Show program's version number and exit",
718
- version=f"locust {version} from {os.path.dirname(__file__)} (Python {platform.python_version()}, {' '.join(ssl.OPENSSL_VERSION.split(' ')[0:2])})",
718
+ version=f"locust {version} from {os.path.dirname(__file__)} (Python {platform.python_version()})",
719
719
  )
720
720
  other_group.add_argument(
721
721
  "--exit-code-on-error",