bigraph-schema 0.0.71__tar.gz → 0.0.73__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bigraph-schema might be problematic. Click here for more details.
- {bigraph_schema-0.0.71/bigraph_schema.egg-info → bigraph_schema-0.0.73}/PKG-INFO +1 -1
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73/bigraph_schema.egg-info}/PKG-INFO +1 -1
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/pyproject.toml +1 -1
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/release.sh +18 -7
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/setup.py +2 -2
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/.github/workflows/notebook_to_html.yml +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/.github/workflows/pytest.yml +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/.gitignore +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/AUTHORS.md +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/CLA.md +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/CODE_OF_CONDUCT.md +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/CONTRIBUTING.md +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/LICENSE +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/README.md +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/__init__.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/edge.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/parse.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/protocols.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/registry.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/tests.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/type_functions.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/type_system.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/type_system_adjunct.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/units.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema/utilities.py +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema.egg-info/SOURCES.txt +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema.egg-info/dependency_links.txt +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema.egg-info/requires.txt +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema.egg-info/top_level.txt +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/notebooks/core.ipynb +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/notebooks/demo.ipynb +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/notebooks/images/place-link.png +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/notebooks/images/reaction-after.png +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/notebooks/images/reaction-before.png +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/notebooks/images/redex-reactum.png +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/pytest.ini +0 -0
- {bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/setup.cfg +0 -0
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
# matching PyPI.
|
|
5
5
|
# Usage: ./release.sh 0.0.1
|
|
6
6
|
|
|
7
|
-
set -e
|
|
7
|
+
# set -e
|
|
8
8
|
|
|
9
|
-
version="$1"
|
|
9
|
+
# version="$1"
|
|
10
10
|
|
|
11
11
|
# # Check version is valid
|
|
12
12
|
# setup_py_version="$(python setup.py --version)"
|
|
@@ -31,13 +31,24 @@ if [ "$branch" != "main" ]; then
|
|
|
31
31
|
exit 1
|
|
32
32
|
fi
|
|
33
33
|
|
|
34
|
+
rm -rf build/ dist/
|
|
35
|
+
uv version --bump patch
|
|
36
|
+
version=$(uv version --short)
|
|
37
|
+
|
|
34
38
|
# Create and push git tag
|
|
35
|
-
git
|
|
39
|
+
git add pyproject.toml
|
|
40
|
+
git commit -m "version $version"
|
|
41
|
+
git tag -m "version v$version" "v$version"
|
|
36
42
|
git push --tags
|
|
37
43
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
44
|
+
uv build
|
|
45
|
+
uv publish --token $(cat ~/.pypi-token)
|
|
46
|
+
rm -rf build/ dist/
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# # Create and publish package
|
|
50
|
+
# rm -rf dist
|
|
51
|
+
# python setup.py sdist
|
|
52
|
+
# twine upload dist/*
|
|
42
53
|
|
|
43
54
|
echo "Version v$version has been published on PyPI and has a git tag."
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
VERSION = '0.0.71'
|
|
4
|
+
# VERSION = '0.0.71'
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
with open("README.md", "r") as readme:
|
|
@@ -10,6 +10,6 @@ with open("README.md", "r") as readme:
|
|
|
10
10
|
|
|
11
11
|
setup(
|
|
12
12
|
name="bigraph-schema",
|
|
13
|
-
version=VERSION,
|
|
13
|
+
# version=VERSION,
|
|
14
14
|
author="Eran Agmon, Ryan Spangler",
|
|
15
15
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{bigraph_schema-0.0.71 → bigraph_schema-0.0.73}/bigraph_schema.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|