wexample-wex-addon-dev-css 6.0.35__tar.gz → 6.0.38__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.1
2
2
  Name: wexample-wex-addon-dev-css
3
- Version: 6.0.35
3
+ Version: 6.0.38
4
4
  Author-Email: weeger <contact@wexample.com>
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -9,7 +9,7 @@ Classifier: Operating System :: OS Independent
9
9
  Requires-Python: >=3.10
10
10
  Requires-Dist: attrs>=23.1.0
11
11
  Requires-Dist: cattrs>=23.1.0
12
- Requires-Dist: wexample-wex-addon-app>=16.4.0
12
+ Requires-Dist: wexample-wex-addon-app>=18.0.0
13
13
  Provides-Extra: dev
14
14
  Requires-Dist: pytest; extra == "dev"
15
15
  Requires-Dist: pytest-cov; extra == "dev"
@@ -17,7 +17,7 @@ Description-Content-Type: text/markdown
17
17
 
18
18
  # wex_addon_dev_css
19
19
 
20
- Version: 6.0.35
20
+ Version: 6.0.38
21
21
 
22
22
  ## Table of Contents
23
23
 
@@ -97,7 +97,125 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
97
97
 
98
98
  - attrs: >=23.1.0
99
99
  - cattrs: >=23.1.0
100
- - wexample-wex-addon-app: >=16.4.0
100
+ - wexample-wex-addon-app: >=18.0.0
101
+
102
+ ## Versioning & Compatibility Policy
103
+
104
+ Wexample packages follow **Semantic Versioning** (SemVer):
105
+
106
+ - **MAJOR**: Breaking changes
107
+ - **MINOR**: New features, backward compatible
108
+ - **PATCH**: Bug fixes, backward compatible
109
+
110
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
111
+
112
+ ## License
113
+
114
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
115
+
116
+ Free to use in both personal and commercial projects.
117
+
118
+ ## Integration in the Suite
119
+
120
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
121
+
122
+ ### Related Packages
123
+
124
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
125
+
126
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
127
+
128
+ # About us
129
+
130
+ [Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
131
+
132
+ This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
133
+
134
+ Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
135
+
136
+ # wex_addon_dev_css
137
+
138
+ Version: 6.0.36
139
+
140
+ ## Table of Contents
141
+
142
+ - [Tests](#tests)
143
+ - [Suite Integration](#suite-integration)
144
+ - [Dependencies](#dependencies)
145
+ - [Versioning](#versioning)
146
+ - [License](#license)
147
+ - [Suite Integration](#suite-integration)
148
+ - [Suite Signature](#suite-signature)
149
+ - [Introduction](#introduction)
150
+ - [Roadmap](#roadmap)
151
+ - [Status Compatibility](#status-compatibility)
152
+ - [Useful Links](#useful-links)
153
+ - [Migration Notes](#migration-notes)
154
+
155
+ ## Tests
156
+
157
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
158
+
159
+ ### Installation
160
+
161
+ First, install the required testing dependencies:
162
+ ```bash
163
+ .venv/bin/python -m pip install pytest pytest-cov
164
+ ```
165
+
166
+ ### Basic Usage
167
+
168
+ Run all tests with coverage:
169
+ ```bash
170
+ .venv/bin/python -m pytest --cov --cov-report=html
171
+ ```
172
+
173
+ ### Common Commands
174
+ ```bash
175
+ # Run tests with coverage for a specific module
176
+ .venv/bin/python -m pytest --cov=your_module
177
+
178
+ # Show which lines are not covered
179
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
180
+
181
+ # Generate an HTML coverage report
182
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
183
+
184
+ # Combine terminal and HTML reports
185
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
186
+
187
+ # Run specific test file with coverage
188
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
189
+ ```
190
+
191
+ ### Viewing HTML Reports
192
+
193
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
194
+
195
+ ### Coverage Threshold
196
+
197
+ To enforce a minimum coverage percentage:
198
+ ```bash
199
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
200
+ ```
201
+
202
+ This will cause the test suite to fail if coverage drops below 80%.
203
+
204
+ ## Integration in the Suite
205
+
206
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
207
+
208
+ ### Related Packages
209
+
210
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
211
+
212
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
213
+
214
+ ## Dependencies
215
+
216
+ - attrs: >=23.1.0
217
+ - cattrs: >=23.1.0
218
+ - wexample-wex-addon-app: >=16.6.0
101
219
 
102
220
  ## Versioning & Compatibility Policy
103
221
 
@@ -309,3 +427,33 @@ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/i
309
427
  When upgrading between major versions, refer to the migration guides in the documentation.
310
428
 
311
429
  Breaking changes are clearly documented with upgrade paths and examples.
430
+
431
+ ## Known Limitations & Roadmap
432
+
433
+ Current limitations and planned features are tracked in the GitHub issues.
434
+
435
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/issues) for upcoming features and improvements.
436
+
437
+ ## Status & Compatibility
438
+
439
+ **Maturity**: Production-ready
440
+
441
+ **Python Support**: >=3.10
442
+
443
+ **OS Support**: Linux, macOS, Windows
444
+
445
+ **Status**: Actively maintained
446
+
447
+ ## Useful Links
448
+
449
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-css
450
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
451
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-css/issues
452
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-css/discussions
453
+ - **PyPI**: [pypi.org/project/wex_addon_dev_css](https://pypi.org/project/wex_addon_dev_css/)
454
+
455
+ ## Migration Notes
456
+
457
+ When upgrading between major versions, refer to the migration guides in the documentation.
458
+
459
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -1,6 +1,6 @@
1
1
  # wex_addon_dev_css
2
2
 
3
- Version: 6.0.35
3
+ Version: 6.0.38
4
4
 
5
5
  ## Table of Contents
6
6
 
@@ -80,7 +80,125 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
80
80
 
81
81
  - attrs: >=23.1.0
82
82
  - cattrs: >=23.1.0
83
- - wexample-wex-addon-app: >=16.4.0
83
+ - wexample-wex-addon-app: >=18.0.0
84
+
85
+ ## Versioning & Compatibility Policy
86
+
87
+ Wexample packages follow **Semantic Versioning** (SemVer):
88
+
89
+ - **MAJOR**: Breaking changes
90
+ - **MINOR**: New features, backward compatible
91
+ - **PATCH**: Bug fixes, backward compatible
92
+
93
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
94
+
95
+ ## License
96
+
97
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
98
+
99
+ Free to use in both personal and commercial projects.
100
+
101
+ ## Integration in the Suite
102
+
103
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
104
+
105
+ ### Related Packages
106
+
107
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
108
+
109
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
110
+
111
+ # About us
112
+
113
+ [Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
114
+
115
+ This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
116
+
117
+ Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
118
+
119
+ # wex_addon_dev_css
120
+
121
+ Version: 6.0.36
122
+
123
+ ## Table of Contents
124
+
125
+ - [Tests](#tests)
126
+ - [Suite Integration](#suite-integration)
127
+ - [Dependencies](#dependencies)
128
+ - [Versioning](#versioning)
129
+ - [License](#license)
130
+ - [Suite Integration](#suite-integration)
131
+ - [Suite Signature](#suite-signature)
132
+ - [Introduction](#introduction)
133
+ - [Roadmap](#roadmap)
134
+ - [Status Compatibility](#status-compatibility)
135
+ - [Useful Links](#useful-links)
136
+ - [Migration Notes](#migration-notes)
137
+
138
+ ## Tests
139
+
140
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
141
+
142
+ ### Installation
143
+
144
+ First, install the required testing dependencies:
145
+ ```bash
146
+ .venv/bin/python -m pip install pytest pytest-cov
147
+ ```
148
+
149
+ ### Basic Usage
150
+
151
+ Run all tests with coverage:
152
+ ```bash
153
+ .venv/bin/python -m pytest --cov --cov-report=html
154
+ ```
155
+
156
+ ### Common Commands
157
+ ```bash
158
+ # Run tests with coverage for a specific module
159
+ .venv/bin/python -m pytest --cov=your_module
160
+
161
+ # Show which lines are not covered
162
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
163
+
164
+ # Generate an HTML coverage report
165
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
166
+
167
+ # Combine terminal and HTML reports
168
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
169
+
170
+ # Run specific test file with coverage
171
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
172
+ ```
173
+
174
+ ### Viewing HTML Reports
175
+
176
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
177
+
178
+ ### Coverage Threshold
179
+
180
+ To enforce a minimum coverage percentage:
181
+ ```bash
182
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
183
+ ```
184
+
185
+ This will cause the test suite to fail if coverage drops below 80%.
186
+
187
+ ## Integration in the Suite
188
+
189
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
190
+
191
+ ### Related Packages
192
+
193
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
194
+
195
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
196
+
197
+ ## Dependencies
198
+
199
+ - attrs: >=23.1.0
200
+ - cattrs: >=23.1.0
201
+ - wexample-wex-addon-app: >=16.6.0
84
202
 
85
203
  ## Versioning & Compatibility Policy
86
204
 
@@ -292,3 +410,33 @@ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/i
292
410
  When upgrading between major versions, refer to the migration guides in the documentation.
293
411
 
294
412
  Breaking changes are clearly documented with upgrade paths and examples.
413
+
414
+ ## Known Limitations & Roadmap
415
+
416
+ Current limitations and planned features are tracked in the GitHub issues.
417
+
418
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/issues) for upcoming features and improvements.
419
+
420
+ ## Status & Compatibility
421
+
422
+ **Maturity**: Production-ready
423
+
424
+ **Python Support**: >=3.10
425
+
426
+ **OS Support**: Linux, macOS, Windows
427
+
428
+ **Status**: Actively maintained
429
+
430
+ ## Useful Links
431
+
432
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-css
433
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
434
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-css/issues
435
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-css/discussions
436
+ - **PyPI**: [pypi.org/project/wex_addon_dev_css](https://pypi.org/project/wex_addon_dev_css/)
437
+
438
+ ## Migration Notes
439
+
440
+ When upgrading between major versions, refer to the migration guides in the documentation.
441
+
442
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-wex-addon-dev-css"
9
- version = "6.0.35"
9
+ version = "6.0.38"
10
10
  authors = [
11
11
  { name = "weeger", email = "contact@wexample.com" },
12
12
  ]
@@ -19,7 +19,7 @@ classifiers = [
19
19
  dependencies = [
20
20
  "attrs>=23.1.0",
21
21
  "cattrs>=23.1.0",
22
- "wexample-wex-addon-app>=16.4.0",
22
+ "wexample-wex-addon-app>=18.0.0",
23
23
  ]
24
24
 
25
25
  [project.readme]