oe-python-template 0.8.30__tar.gz → 0.8.32__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.4
2
2
  Name: oe-python-template
3
- Version: 0.8.30
3
+ Version: 0.8.32
4
4
  Summary: 🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling.
5
5
  Project-URL: Homepage, https://oe-python-template.readthedocs.io/en/latest/
6
6
  Project-URL: Documentation, https://oe-python-template.readthedocs.io/en/latest/
@@ -441,8 +441,10 @@ Dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet i
441
441
  ## Further Reading
442
442
 
443
443
  * Inspect our [security policy](https://oe-python-template.readthedocs.io/en/latest/security.html) with detailed documentation of checks, tools and principles.
444
+ * Check out the [CLI Reference](https://oe-python-template.readthedocs.io/en/latest/cli_reference.html) with detailed documentation of all CLI commands and options.
445
+ * Check out the [Library Reference](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html) with detailed documentation of public classes and functions.
446
+ * Check out the [API Reference](https://oe-python-template.readthedocs.io/en/latest/api_reference_v1.html) with detailed documentation of all API operations and parameters.
444
447
  * Our [release notes](https://oe-python-template.readthedocs.io/en/latest/release-notes.html) provide a complete log of recent improvements and changes.
445
- * Check out the [reference](https://oe-python-template.readthedocs.io/en/latest/reference.html) with detailed documentation of public classes and functions.
446
448
  * In case you want to help us improve 🧠 OE Python Template: The [contribution guidelines](https://oe-python-template.readthedocs.io/en/latest/contributing.html) explain how to setup your development environment and create pull requests.
447
449
  * We gratefully acknowledge the [open source projects](ATTRIBUTIONS.md) that this project builds upon. Thank you to all these wonderful contributors!
448
450
 
@@ -380,8 +380,10 @@ Dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet i
380
380
  ## Further Reading
381
381
 
382
382
  * Inspect our [security policy](https://oe-python-template.readthedocs.io/en/latest/security.html) with detailed documentation of checks, tools and principles.
383
+ * Check out the [CLI Reference](https://oe-python-template.readthedocs.io/en/latest/cli_reference.html) with detailed documentation of all CLI commands and options.
384
+ * Check out the [Library Reference](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html) with detailed documentation of public classes and functions.
385
+ * Check out the [API Reference](https://oe-python-template.readthedocs.io/en/latest/api_reference_v1.html) with detailed documentation of all API operations and parameters.
383
386
  * Our [release notes](https://oe-python-template.readthedocs.io/en/latest/release-notes.html) provide a complete log of recent improvements and changes.
384
- * Check out the [reference](https://oe-python-template.readthedocs.io/en/latest/reference.html) with detailed documentation of public classes and functions.
385
387
  * In case you want to help us improve 🧠 OE Python Template: The [contribution guidelines](https://oe-python-template.readthedocs.io/en/latest/contributing.html) explain how to setup your development environment and create pull requests.
386
388
  * We gratefully acknowledge the [open source projects](ATTRIBUTIONS.md) that this project builds upon. Thank you to all these wonderful contributors!
387
389
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "oe-python-template"
3
- version = "0.8.30"
3
+ version = "0.8.32"
4
4
  description = "🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling."
5
5
  readme = "README.md"
6
6
  authors = [{ name = "Helmut Hoffer von Ankershoffen", email = "helmuthva@gmail.com" }]
@@ -135,6 +135,7 @@ dev = [
135
135
  "swagger-plugin-for-sphinx>=5.1.0",
136
136
  "tomli>=2.1.0",
137
137
  "types-pyyaml>=6.0.12.20250402",
138
+ "types-requests>=2.32.0.20250328",
138
139
  "watchdog>=6.0.0",
139
140
  ]
140
141
 
@@ -260,7 +261,7 @@ source = ["src/"]
260
261
 
261
262
 
262
263
  [tool.bumpversion]
263
- current_version = "0.8.30"
264
+ current_version = "0.8.32"
264
265
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
265
266
  serialize = ["{major}.{minor}.{patch}"]
266
267
  search = "{current_version}"