File tree Expand file tree Collapse file tree 4 files changed +11
-397
lines changed
Expand file tree Collapse file tree 4 files changed +11
-397
lines changed Original file line number Diff line number Diff line change @@ -20,24 +20,20 @@ classifiers = [
2020 " Topic :: Software Development" ,
2121]
2222dependencies = [
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 ]
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -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
79uv build
810# Publish on Pypi
Original file line number Diff line number Diff line change 33from 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" )
You can’t perform that action at this time.
0 commit comments