yamlscript 0.1.53__tar.gz → 0.1.55__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.
- {yamlscript-0.1.53/lib/yamlscript.egg-info → yamlscript-0.1.55}/PKG-INFO +1 -1
- {yamlscript-0.1.53 → yamlscript-0.1.55}/ReadMe.md +1 -1
- {yamlscript-0.1.53 → yamlscript-0.1.55}/lib/yamlscript/__init__.py +2 -2
- {yamlscript-0.1.53 → yamlscript-0.1.55/lib/yamlscript.egg-info}/PKG-INFO +1 -1
- {yamlscript-0.1.53 → yamlscript-0.1.55}/setup.py +1 -1
- {yamlscript-0.1.53 → yamlscript-0.1.55}/.long_description.md +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/MANIFEST.in +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/lib/yamlscript.egg-info/SOURCES.txt +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/lib/yamlscript.egg-info/dependency_links.txt +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/lib/yamlscript.egg-info/requires.txt +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/lib/yamlscript.egg-info/top_level.txt +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/setup.cfg +0 -0
- {yamlscript-0.1.53 → yamlscript-0.1.55}/test/test.py +0 -0
|
@@ -106,7 +106,7 @@ but you will need to have a system install of `libyamlscript.so`.
|
|
|
106
106
|
One simple way to do that is with:
|
|
107
107
|
|
|
108
108
|
```bash
|
|
109
|
-
$ curl
|
|
109
|
+
$ curl https://yamlscript.org/install | bash
|
|
110
110
|
```
|
|
111
111
|
|
|
112
112
|
> Note: The above command will install the latest version of the YAMLScript
|
|
@@ -16,7 +16,7 @@ object that the YAMLScript code evaluates to.
|
|
|
16
16
|
# This value is automatically updated by 'make bump'.
|
|
17
17
|
# The version number is used to find the correct shared library file.
|
|
18
18
|
# We currently only support binding to an exact version of libyamlscript.
|
|
19
|
-
yamlscript_version = '0.1.
|
|
19
|
+
yamlscript_version = '0.1.55'
|
|
20
20
|
|
|
21
21
|
import os, sys
|
|
22
22
|
import ctypes
|
|
@@ -62,7 +62,7 @@ def find_libyamlscript_path():
|
|
|
62
62
|
raise Exception(
|
|
63
63
|
"""\
|
|
64
64
|
Shared library file '%s' not found
|
|
65
|
-
Try: curl
|
|
65
|
+
Try: curl https://yamlscript.org/install | VERSION=%s LIB=1 bash
|
|
66
66
|
See: https://github.com/yaml/yamlscript/wiki/Installing-YAMLScript
|
|
67
67
|
""" % (libyamlscript_name, yamlscript_version))
|
|
68
68
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|