omlish-cext 0.0.0.dev489__tar.gz → 0.0.0.dev498__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.
- {omlish_cext-0.0.0.dev489/omlish_cext.egg-info → omlish_cext-0.0.0.dev498}/PKG-INFO +4 -5
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/README.md +2 -3
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498/omlish_cext.egg-info}/PKG-INFO +4 -5
- omlish_cext-0.0.0.dev498/omlish_cext.egg-info/requires.txt +1 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/pyproject.toml +2 -2
- omlish_cext-0.0.0.dev489/omlish_cext.egg-info/requires.txt +0 -1
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/LICENSE +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/omlish/lang/_asyncs.cc +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/omlish/lang/imports/_capture.cc +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/omlish_cext.egg-info/SOURCES.txt +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/omlish_cext.egg-info/dependency_links.txt +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/omlish_cext.egg-info/top_level.txt +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/setup.cfg +0 -0
- {omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omlish-cext
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev498
|
|
4
4
|
Summary: omlish
|
|
5
5
|
Author: wrmsr
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
14
14
|
Requires-Python: >=3.13
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: omlish==0.0.0.
|
|
17
|
+
Requires-Dist: omlish==0.0.0.dev498
|
|
18
18
|
Dynamic: license-file
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
@@ -158,8 +158,8 @@ dependencies of any kind**.
|
|
|
158
158
|
- **[plugins](https://github.com/wrmsr/omlish/blob/master/omlish/testing/pytest/plugins)** - Various other plugins.
|
|
159
159
|
|
|
160
160
|
- **[typedvalues](https://github.com/wrmsr/omlish/blob/master/omlish/typedvalues)** - A little toolkit around 'boxed'
|
|
161
|
-
values, whose 'box' types convey more information than the bare values themselves. A rebellion against kwargs
|
|
162
|
-
vars: instead of `foo(bar=1, baz=2)`, you do `foo(Bar(1), Baz(2))`.
|
|
161
|
+
values, whose 'box' types convey more information than the bare values themselves. A rebellion against kwargs / env
|
|
162
|
+
vars / giant config objects: instead of `foo(bar=1, baz=2)`, you do `foo(Bar(1), Baz(2))`.
|
|
163
163
|
|
|
164
164
|
- **[lite](https://github.com/wrmsr/omlish/blob/master/omlish/lite)** - The standard library of 'lite' code. This is the
|
|
165
165
|
only package beneath `lang`, and parts of it are re-exported by it for deduplication. On top of miscellaneous
|
|
@@ -208,7 +208,6 @@ examples are:
|
|
|
208
208
|
- **anyio** - While lite code must use only asyncio, non-trivial async standard code prefers to be written to anyio.
|
|
209
209
|
- **pytest** - What is used for all standard testing - as lite code has no dependencies of any kind its testing uses
|
|
210
210
|
stdlib's [unittest](https://docs.python.org/3/library/unittest.html).
|
|
211
|
-
- **wrapt** - For (optionally-enabled) injector circular proxies.
|
|
212
211
|
- **sqlalchemy** - The codebase has migrated away from SQLAlchemy in favor of the internal api but it retains it as an
|
|
213
212
|
optional dep to support adapting the internal api to it.
|
|
214
213
|
|
|
@@ -139,8 +139,8 @@ dependencies of any kind**.
|
|
|
139
139
|
- **[plugins](https://github.com/wrmsr/omlish/blob/master/omlish/testing/pytest/plugins)** - Various other plugins.
|
|
140
140
|
|
|
141
141
|
- **[typedvalues](https://github.com/wrmsr/omlish/blob/master/omlish/typedvalues)** - A little toolkit around 'boxed'
|
|
142
|
-
values, whose 'box' types convey more information than the bare values themselves. A rebellion against kwargs
|
|
143
|
-
vars: instead of `foo(bar=1, baz=2)`, you do `foo(Bar(1), Baz(2))`.
|
|
142
|
+
values, whose 'box' types convey more information than the bare values themselves. A rebellion against kwargs / env
|
|
143
|
+
vars / giant config objects: instead of `foo(bar=1, baz=2)`, you do `foo(Bar(1), Baz(2))`.
|
|
144
144
|
|
|
145
145
|
- **[lite](https://github.com/wrmsr/omlish/blob/master/omlish/lite)** - The standard library of 'lite' code. This is the
|
|
146
146
|
only package beneath `lang`, and parts of it are re-exported by it for deduplication. On top of miscellaneous
|
|
@@ -189,7 +189,6 @@ examples are:
|
|
|
189
189
|
- **anyio** - While lite code must use only asyncio, non-trivial async standard code prefers to be written to anyio.
|
|
190
190
|
- **pytest** - What is used for all standard testing - as lite code has no dependencies of any kind its testing uses
|
|
191
191
|
stdlib's [unittest](https://docs.python.org/3/library/unittest.html).
|
|
192
|
-
- **wrapt** - For (optionally-enabled) injector circular proxies.
|
|
193
192
|
- **sqlalchemy** - The codebase has migrated away from SQLAlchemy in favor of the internal api but it retains it as an
|
|
194
193
|
optional dep to support adapting the internal api to it.
|
|
195
194
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omlish-cext
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev498
|
|
4
4
|
Summary: omlish
|
|
5
5
|
Author: wrmsr
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
14
14
|
Requires-Python: >=3.13
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: omlish==0.0.0.
|
|
17
|
+
Requires-Dist: omlish==0.0.0.dev498
|
|
18
18
|
Dynamic: license-file
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
@@ -158,8 +158,8 @@ dependencies of any kind**.
|
|
|
158
158
|
- **[plugins](https://github.com/wrmsr/omlish/blob/master/omlish/testing/pytest/plugins)** - Various other plugins.
|
|
159
159
|
|
|
160
160
|
- **[typedvalues](https://github.com/wrmsr/omlish/blob/master/omlish/typedvalues)** - A little toolkit around 'boxed'
|
|
161
|
-
values, whose 'box' types convey more information than the bare values themselves. A rebellion against kwargs
|
|
162
|
-
vars: instead of `foo(bar=1, baz=2)`, you do `foo(Bar(1), Baz(2))`.
|
|
161
|
+
values, whose 'box' types convey more information than the bare values themselves. A rebellion against kwargs / env
|
|
162
|
+
vars / giant config objects: instead of `foo(bar=1, baz=2)`, you do `foo(Bar(1), Baz(2))`.
|
|
163
163
|
|
|
164
164
|
- **[lite](https://github.com/wrmsr/omlish/blob/master/omlish/lite)** - The standard library of 'lite' code. This is the
|
|
165
165
|
only package beneath `lang`, and parts of it are re-exported by it for deduplication. On top of miscellaneous
|
|
@@ -208,7 +208,6 @@ examples are:
|
|
|
208
208
|
- **anyio** - While lite code must use only asyncio, non-trivial async standard code prefers to be written to anyio.
|
|
209
209
|
- **pytest** - What is used for all standard testing - as lite code has no dependencies of any kind its testing uses
|
|
210
210
|
stdlib's [unittest](https://docs.python.org/3/library/unittest.html).
|
|
211
|
-
- **wrapt** - For (optionally-enabled) injector circular proxies.
|
|
212
211
|
- **sqlalchemy** - The codebase has migrated away from SQLAlchemy in favor of the internal api but it retains it as an
|
|
213
212
|
optional dep to support adapting the internal api to it.
|
|
214
213
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
omlish==0.0.0.dev498
|
|
@@ -13,7 +13,7 @@ urls = {source = 'https://github.com/wrmsr/omlish'}
|
|
|
13
13
|
license = 'BSD-3-Clause'
|
|
14
14
|
readme = 'README.md'
|
|
15
15
|
requires-python = '>=3.13'
|
|
16
|
-
version = '0.0.0.
|
|
16
|
+
version = '0.0.0.dev498'
|
|
17
17
|
classifiers = [
|
|
18
18
|
'Development Status :: 2 - Pre-Alpha',
|
|
19
19
|
'Intended Audience :: Developers',
|
|
@@ -24,7 +24,7 @@ classifiers = [
|
|
|
24
24
|
]
|
|
25
25
|
description = 'omlish'
|
|
26
26
|
dependencies = [
|
|
27
|
-
'omlish == 0.0.0.
|
|
27
|
+
'omlish == 0.0.0.dev498',
|
|
28
28
|
]
|
|
29
29
|
|
|
30
30
|
[tool.setuptools]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
omlish==0.0.0.dev489
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omlish_cext-0.0.0.dev489 → omlish_cext-0.0.0.dev498}/omlish_cext.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|