matlabpy 0.0.3__tar.gz → 0.0.6__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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: matlabpy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: A Python library for MATLAB integration
|
|
5
5
|
Author: Daniel F. Hernández Gardiol
|
|
6
6
|
Author-email: dan.fhg@gmail.com
|
|
@@ -9,6 +9,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.14
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
12
|
+
hopefully this will be version 6
|
|
13
|
+
|
|
12
14
|
matpy.py — A lightweight Python library that mimics core MATLAB matrix syntax & operators
|
|
13
15
|
|
|
14
16
|
To publish a new version:
|
|
@@ -24,3 +26,9 @@ git tag v$(poetry version --short)
|
|
|
24
26
|
# 4. Push the commit and the tag to GitHub
|
|
25
27
|
git push origin main
|
|
26
28
|
git push origin v$(poetry version --short)
|
|
29
|
+
|
|
30
|
+
poetry version patch
|
|
31
|
+
git commit -am "Bump version to $(poetry version --short)"
|
|
32
|
+
git tag v$(poetry version --short)
|
|
33
|
+
git push origin main
|
|
34
|
+
git push origin v$(poetry version --short)
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
hopefully this will be version 6
|
|
2
|
+
|
|
1
3
|
matpy.py — A lightweight Python library that mimics core MATLAB matrix syntax & operators
|
|
2
4
|
|
|
3
5
|
To publish a new version:
|
|
@@ -12,4 +14,10 @@ git tag v$(poetry version --short)
|
|
|
12
14
|
|
|
13
15
|
# 4. Push the commit and the tag to GitHub
|
|
14
16
|
git push origin main
|
|
17
|
+
git push origin v$(poetry version --short)
|
|
18
|
+
|
|
19
|
+
poetry version patch
|
|
20
|
+
git commit -am "Bump version to $(poetry version --short)"
|
|
21
|
+
git tag v$(poetry version --short)
|
|
22
|
+
git push origin main
|
|
15
23
|
git push origin v$(poetry version --short)
|
|
File without changes
|