yamlscript 0.1.87__tar.gz → 0.1.89__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.87/lib/yamlscript.egg-info → yamlscript-0.1.89}/PKG-INFO +1 -1
- {yamlscript-0.1.87 → yamlscript-0.1.89}/ReadMe.md +2 -2
- {yamlscript-0.1.87 → yamlscript-0.1.89}/lib/yamlscript/__init__.py +3 -3
- {yamlscript-0.1.87 → yamlscript-0.1.89/lib/yamlscript.egg-info}/PKG-INFO +1 -1
- {yamlscript-0.1.87 → yamlscript-0.1.89}/setup.py +1 -1
- {yamlscript-0.1.87 → yamlscript-0.1.89}/.long_description.md +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/MANIFEST.in +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/lib/yamlscript.egg-info/SOURCES.txt +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/lib/yamlscript.egg-info/dependency_links.txt +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/lib/yamlscript.egg-info/requires.txt +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/lib/yamlscript.egg-info/top_level.txt +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/setup.cfg +0 -0
- {yamlscript-0.1.87 → yamlscript-0.1.89}/test/test.py +0 -0
|
@@ -10,7 +10,7 @@ Add Logic to Your YAML Files
|
|
|
10
10
|
|
|
11
11
|
Load `file.yaml` with YAMLScript:
|
|
12
12
|
```yaml
|
|
13
|
-
!yamlscript/v0
|
|
13
|
+
!yamlscript/v0:
|
|
14
14
|
|
|
15
15
|
# Get data from external sources:
|
|
16
16
|
names-url =:
|
|
@@ -167,7 +167,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info.
|
|
|
167
167
|
|
|
168
168
|
## License & Copyright
|
|
169
169
|
|
|
170
|
-
Copyright 2022-
|
|
170
|
+
Copyright 2022-2025 Ingy döt Net <ingy@ingy.net>
|
|
171
171
|
|
|
172
172
|
This project is licensed under the terms of the `MIT` license.
|
|
173
173
|
See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2023-
|
|
1
|
+
# Copyright 2023-2025 Ingy dot Net
|
|
2
2
|
# This code is licensed under MIT license (See License for details)
|
|
3
3
|
|
|
4
4
|
"""
|
|
@@ -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.89'
|
|
20
20
|
|
|
21
21
|
import os, sys
|
|
22
22
|
import ctypes
|
|
@@ -40,7 +40,7 @@ def find_libyamlscript_path():
|
|
|
40
40
|
"Unsupported platform '%s' for yamlscript." % sys.platform)
|
|
41
41
|
|
|
42
42
|
# We currently bind to an exact version of libyamlscript.
|
|
43
|
-
# eg 'libyamlscript.so.0.1.
|
|
43
|
+
# eg 'libyamlscript.so.0.1.89'
|
|
44
44
|
libyamlscript_name = \
|
|
45
45
|
"libyamlscript.%s.%s" % (so, yamlscript_version)
|
|
46
46
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|