@elizaos/python 2.0.0-alpha.33 → 2.0.0-alpha.37

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 (2) hide show
  1. package/package.json +2 -2
  2. package/pyproject.toml +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/python",
3
- "version": "2.0.0-alpha.33",
3
+ "version": "2.0.0-alpha.37",
4
4
  "description": "elizaOS Core - Python runtime and types",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,5 +16,5 @@
16
16
  },
17
17
  "author": "elizaOS",
18
18
  "license": "MIT",
19
- "gitHead": "31699d50c69704a79efbac5fd6a87813c68ce6af"
19
+ "gitHead": "062a66e2820ec50c70e73200a5664adb2784b16b"
20
20
  }
package/pyproject.toml CHANGED
@@ -80,8 +80,8 @@ disallow_incomplete_defs = false
80
80
  check_untyped_defs = true
81
81
  no_implicit_optional = true
82
82
  warn_redundant_casts = true
83
- # Ignore generated protobuf files which have known type issues
84
- exclude = ["elizaos/types/generated/"]
83
+ # Ignore generated protobuf files and in-package tests during package typecheck.
84
+ exclude = ["elizaos/types/generated/", ".*/test_.*\\.py$"]
85
85
 
86
86
  [[tool.mypy.overrides]]
87
87
  module = "elizaos.types.generated.*"