Overview
Comment: | config samples in table |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
675e0155fd53220b666c1291d9526daf |
User & Date: | mario on 2022-10-30 09:11:59 |
Other Links: | manifest | tags |
Context
2022-10-30
| ||
09:13 | doc updates, minor test changes (reset/tearDown) check-in: d8c4b46a36 user: mario tags: trunk | |
09:11 | config samples in table check-in: 675e0155fd user: mario tags: trunk | |
09:11 | rename module_base to data_root, change bytes.decode (probably should be a try/except), add dirname when module.__path__ missing, doc updates check-in: 8b8e58b0e7 user: mario tags: trunk | |
Changes
Modified pluginconf/flit.py from [555cf6a6b4] to [4725663a44].
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | + + + + - - - + + + - - + + + + + + + + + + + + + + - + | # Not sure yet if the pyproject.toml specs allow for reconcilation here. # <https://github.com/pypa/flit/issues/605> """ monkeypatches flit to use pluginconf sources for packaging with a `pyproject.toml` like: <table> <tr><th>pyproject.toml</th> <th>foobar/__init__.py</th></tr> <tr><td><code><pre> |
︙ | |||
91 92 93 94 95 96 97 | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | - + - + | """ @inject different sourcing order to apply plugin meta fields """ meta = { "name": module.name, "provides": [module.name] } meta.update(ini_info.metadata) meta.update( |
︙ |