Skip to content

Commit ea4745a

Browse files
committed
Remove version and cleanup lock file
1 parent aab9727 commit ea4745a

File tree

4 files changed

+11
-397
lines changed

4 files changed

+11
-397
lines changed

pyproject.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,20 @@ classifiers = [
2020
"Topic :: Software Development",
2121
]
2222
dependencies = [
23-
"pytest>=8.3.4",
24-
"pytest-cov>=6.0.0",
2523
"absl-py",
2624
"asyncio",
2725
"datasets",
2826
"jinja2",
29-
"jsonschema",
3027
"litellm",
3128
"namex",
3229
"numpy",
3330
"optree",
3431
"pydantic",
3532
"pydotplus",
3633
"rich",
37-
"mkdocstrings-python",
38-
"matplotlib>=3.9.4",
39-
"docstring-parser>=0.16",
40-
"nest-asyncio>=1.6.0",
34+
"matplotlib",
35+
"docstring-parser",
36+
"nest-asyncio",
4137
]
4238

4339
[project.urls]

shell/publish.sh

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

4-
# Cleanup the cache
5-
uv cache clean
4+
# Remove dist folder
5+
# To avoid problems with uv publish
6+
# that don't find the last version
7+
rm -rf dist/
68
# Build the project
79
uv build
810
# Publish on Pypi

synalinks/src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from synalinks.src.api_export import synalinks_export
44

55
# Unique source of truth for the version number.
6-
__version__ = "0.1.001"
6+
__version__ = "0.1.2"
77

88

99
@synalinks_export("synalinks.version")

0 commit comments

Comments
 (0)