softmax-cli 0.26.7__tar.gz → 0.26.8__tar.gz

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.
Files changed (21) hide show
  1. {softmax_cli-0.26.7/src/softmax_cli.egg-info → softmax_cli-0.26.8}/PKG-INFO +1 -1
  2. {softmax_cli-0.26.7 → softmax_cli-0.26.8/src/softmax_cli.egg-info}/PKG-INFO +1 -1
  3. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/tests/BUILD.bazel +6 -0
  4. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/BUILD.bazel +0 -0
  5. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/pyproject.toml +0 -0
  6. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/setup.cfg +0 -0
  7. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/__init__.py +0 -0
  8. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/_console.py +0 -0
  9. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/auth.py +0 -0
  10. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/cli.py +0 -0
  11. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/cogames.py +0 -0
  12. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/perform_login.py +0 -0
  13. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax/token_storage.py +0 -0
  14. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax_cli.egg-info/SOURCES.txt +0 -0
  15. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax_cli.egg-info/dependency_links.txt +0 -0
  16. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax_cli.egg-info/entry_points.txt +0 -0
  17. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax_cli.egg-info/requires.txt +0 -0
  18. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/src/softmax_cli.egg-info/top_level.txt +0 -0
  19. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/tests/test_auth_login.py +0 -0
  20. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/tests/test_cli_plugins.py +0 -0
  21. {softmax_cli-0.26.7 → softmax_cli-0.26.8}/tests/test_python_api.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: softmax-cli
3
- Version: 0.26.7
3
+ Version: 0.26.8
4
4
  Summary: Softmax CLI — authentication and account tools
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: Programming Language :: Python :: 3.11
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: softmax-cli
3
- Version: 0.26.7
3
+ Version: 0.26.8
4
4
  Summary: Softmax CLI — authentication and account tools
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: Programming Language :: Python :: 3.11
@@ -25,6 +25,12 @@ _TEST_FILES = glob(
25
25
  ],
26
26
  deps = [
27
27
  "//packages/softmax-cli:softmax",
28
+ # test_cli_plugins exercises Typer entry-point discovery — it
29
+ # asserts `cogames` registers as a softmax subcommand. With
30
+ # per-package @pyenv targets only deps you name reach the
31
+ # runfiles tree, so the cogames dist-info has to be pulled in
32
+ # explicitly for the entry-point loader to find it.
33
+ "@pyenv//:cogames",
28
34
  "@pyenv//:pytest",
29
35
  ],
30
36
  )
File without changes
File without changes