Skip to content

Commit 15664cb

Browse files
committed
Various fixes
1 parent 9779a23 commit 15664cb

File tree

13 files changed

+30
-220
lines changed

13 files changed

+30
-220
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<div align="center">
1111

12-
![Alpha](https://img.shields.io/badge/Release-Alpha-orange.svg)
12+
![Beta](https://img.shields.io/badge/Release-Beta-blue.svg)
1313
[![Discord](https://img.shields.io/discord/1118241178723291219)](https://discord.gg/82nt97uXcM)
1414
[![Python package](https://github.com/SynaLinks/Synalinks/actions/workflows/tests.yml/badge.svg)](https://github.com/SynaLinks/SynaLinks/actions/workflows/tests.yml)
1515
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache_2.0-green.svg)](https://opensource.org/license/apache-2-0)
@@ -236,9 +236,9 @@ program.summary()
236236
Or a plot (usefull to document your system):
237237

238238
```python
239-
filepath = synalinks.utils.plot_program(
239+
synalinks.utils.plot_program(
240240
program,
241-
show_modules_names=True,
241+
show_module_names=True,
242242
show_trainable=True,
243243
show_schemas=True,
244244
)

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ program.summary()
193193
Or a plot (usefull to document your system):
194194

195195
```python
196-
filepath = synalinks.utils.plot_program(
196+
synalinks.utils.plot_program(
197197
program,
198-
show_modules_names=True,
198+
show_module_names=True,
199199
show_trainable=True,
200200
show_schemas=True,
201201
)

notebooks/conversational_applications.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def _():
99
import marimo as mo
1010
import synalinks
11-
11+
1212
synalinks.backend.clear_session()
1313
return mo, synalinks
1414

@@ -57,7 +57,7 @@ async def _(synalinks):
5757
_x1 = await synalinks.Generator(
5858
language_model=language_model,
5959
prompt_template=synalinks.chat_prompt_template(),
60-
streaming=False, # Marimo chat don't handle streaming yet
60+
streaming=False, # Marimo chat don't handle streaming yet
6161
)(_x0)
6262

6363
program = synalinks.Program(

notebooks/test_checkpoint.program.json

Lines changed: 0 additions & 206 deletions
This file was deleted.

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ readme = "README.md"
55
requires-python = ">=3.9"
66
dynamic = ["version"]
77
classifiers = [
8-
"Development Status :: 1 - Beta",
8+
"Development Status :: 4 - Beta",
99
"Programming Language :: Python :: 3",
1010
"Programming Language :: Python :: 3.9",
1111
"Programming Language :: Python :: 3.10",
1212
"Programming Language :: Python :: 3.11",
13+
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: 3.13",
1315
"Programming Language :: Python :: 3 :: Only",
1416
"Operating System :: Unix",
1517
"Operating System :: MacOS",
@@ -38,6 +40,13 @@ dependencies = [
3840
"nest-asyncio>=1.6.0",
3941
]
4042

43+
[project.urls]
44+
Homepage = "https://github.com/SynaLinks/synalinks"
45+
Issues = "https://github.com/SynaLinks/synalinks/issues"
46+
47+
[tool.setuptools]
48+
license-files = []
49+
4150
[tool.setuptools.dynamic]
4251
version = {attr = "synalinks.src.version.__version__"}
4352

shell/publish.sh

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/bash
22
set -Eeuo pipefail
33

4+
uv build
5+
uv publish

synalinks/src/backend/common/symbolic_data_model_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Modified from: keras/src/backend/common/keras_tensor.py
1+
# Modified from: keras/src/backend/common/keras_tensor_test.py
22
# Original authors: François Chollet et al. (Keras Team)
33
# License Apache 2.0: (c) 2025 Yoan Sallami (Synalinks Team)
44

synalinks/src/callbacks/callback_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Modified from: keras/src/callbacks/callback_list.py
1+
# Modified from: keras/src/callbacks/callback_test.py
22
# Original authors: François Chollet et al. (Keras Team)
33
# License Apache 2.0: (c) 2025 Yoan Sallami (Synalinks Team)
44

synalinks/src/language_models/language_model_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Modified from: keras/src/initializers/initializer.py
2-
# Original authors: François Chollet et al. (Keras Team)
31
# License Apache 2.0: (c) 2025 Yoan Sallami (Synalinks Team)
42

53
from unittest.mock import patch

synalinks/src/modules/merging/concat_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# License Apache 2.0: (c) 2025 Yoan Sallami (Synalinks Team)
2+
13
from synalinks.src import testing
24
from synalinks.src.backend import DataModel
35
from synalinks.src.modules.core.input_module import Input

0 commit comments

Comments
 (0)