Skip to content

Commit 62fce3f

Browse files
authored
Update dependencies (#192)
1 parent abc0291 commit 62fce3f

File tree

3 files changed

+24
-23
lines changed

3 files changed

+24
-23
lines changed

docs/gen_ref_pages.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,5 @@ def run() -> None:
114114
generate_nav_file(nav, REFERENCE_DIR)
115115

116116

117-
run()
117+
if __name__ == "__main__":
118+
run()

poetry.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+21-21
Original file line numberDiff line numberDiff line change
@@ -8,51 +8,51 @@
88
version="0.0.0"
99

1010
[tool.poetry.dependencies]
11-
datasets=">=2.15.0"
12-
einops=">=0.6"
13-
pydantic=">=2.5.2"
11+
datasets=">=2.16.1"
12+
einops=">=0.7.0"
13+
pydantic=">=2.5.3"
1414
python=">=3.10, <3.12"
1515
strenum=">=0.4.15"
16-
tokenizers=">=0.15.0"
17-
torch=">=2.1.1"
18-
transformers=">=4.35.2"
19-
wandb=">=0.16.1"
16+
tokenizers=">=0.15.1"
17+
torch=">=2.1.2"
18+
transformers=">=4.37.1"
19+
wandb=">=0.16.2"
2020
zstandard=">=0.22.0" # Required for downloading datasets such as The Pile
2121

2222
[tool.poetry.group]
2323
[tool.poetry.group.dev.dependencies]
24-
jupyter=">=1"
25-
plotly=">=5"
26-
poethepoet=">=0.24.2"
27-
pydoclint=">=0.3.8"
28-
pyright=">=1.1.340"
29-
pytest=">=7"
30-
pytest-cov=">=4"
24+
jupyter=">=1.0.0"
25+
plotly=">=5.18.0"
26+
poethepoet=">=0.24.4"
27+
pydoclint=">=0.3.9"
28+
pyright=">=1.1.348"
29+
pytest=">=7.4.4"
30+
pytest-cov=">=4.1.0"
3131
pytest-integration=">=0.2.3"
3232
pytest-timeout=">=2.2.0"
3333
pytest-xdist="^3.5.0"
3434
ruff=">=0.1.14"
3535
syrupy=">=4.6.0"
3636

3737
[tool.poetry.group.demos.dependencies]
38-
huggingface-hub=">=0.19.4"
38+
huggingface-hub=">=0.20.3"
3939
ipywidgets=">=8.1.1"
40-
jupyterlab=">=3"
41-
transformer-lens=">=1.9.0"
40+
jupyterlab=">=4.0.11"
41+
transformer-lens=">=1.13.0"
4242

4343
[tool.poetry.group.docs.dependencies]
4444
mkdocs=">=1.5.3"
4545
mkdocs-gen-files=">=0.5.0"
4646
mkdocs-htmlproofer-plugin=">=1.0.0"
4747
mkdocs-literate-nav=">=0.6.1"
48-
mkdocs-material=">=9.4.10"
48+
mkdocs-material=">=9.5.5"
4949
mkdocs-section-index=">=0.3.8"
5050
mkdocstrings={extras=["python"], version=">=0.24.0"}
51-
mkdocstrings-python=">=1.7.3"
51+
mkdocstrings-python=">=1.8.0"
5252
mknotebooks=">=0.8.0"
5353
pygments=">=2.17.2"
54-
pymdown-extensions=">=10.5"
55-
pytkdocs-tweaks=">=0.0.7"
54+
pymdown-extensions=">=10.7"
55+
pytkdocs-tweaks=">=0.0.8"
5656

5757
[tool.poetry.scripts]
5858
join-sae-sweep='sparse_autoencoder.train.join_sweep:run'

0 commit comments

Comments
 (0)