thebasedcapital commited on
Commit
ea3ddc9
·
verified ·
1 Parent(s): 927a285

morph-hrr v0.1.1: add numpy to dependencies (fixes broken import)

Browse files
Files changed (2) hide show
  1. pyproject.toml +2 -2
  2. src/morph_hrr/__init__.py +1 -1
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
 
5
  [project]
6
  name = "morph-hrr"
7
- version = "0.1.0"
8
  description = "Compositional HRR morpheme tokenizer/embeddings: circular-convolution prefix (x) root (x) suffix, for Apple MLX."
9
  readme = "README.md"
10
  requires-python = ">=3.11"
@@ -16,7 +16,7 @@ classifiers = [
16
  "License :: OSI Approved :: MIT License",
17
  "Operating System :: MacOS",
18
  ]
19
- dependencies = ["mlx"]
20
 
21
  [project.optional-dependencies]
22
  test = ["pytest"]
 
4
 
5
  [project]
6
  name = "morph-hrr"
7
+ version = "0.1.1"
8
  description = "Compositional HRR morpheme tokenizer/embeddings: circular-convolution prefix (x) root (x) suffix, for Apple MLX."
9
  readme = "README.md"
10
  requires-python = ">=3.11"
 
16
  "License :: OSI Approved :: MIT License",
17
  "Operating System :: MacOS",
18
  ]
19
+ dependencies = ["mlx", "numpy"]
20
 
21
  [project.optional-dependencies]
22
  test = ["pytest"]
src/morph_hrr/__init__.py CHANGED
@@ -6,7 +6,7 @@ out-of-vocabulary-friendly token representations.
6
  """
7
  from __future__ import annotations
8
 
9
- __version__ = "0.1.0"
10
 
11
  from .hrr import (
12
  bind,
 
6
  """
7
  from __future__ import annotations
8
 
9
+ __version__ = "0.1.1"
10
 
11
  from .hrr import (
12
  bind,