oe-python-template 0.8.15__tar.gz → 0.8.16__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.15
3
+ Version: 0.8.16
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/
@@ -50,13 +50,13 @@ Classifier: Typing :: Typed
50
50
  Requires-Python: <4.0,>=3.11
51
51
  Requires-Dist: fastapi[all,standard]>=0.115.12
52
52
  Requires-Dist: pydantic-settings>=2.8.1
53
- Requires-Dist: pydantic>=2.10.6
53
+ Requires-Dist: pydantic>=2.11.1
54
54
  Requires-Dist: typer>=0.15.1
55
55
  Provides-Extra: examples
56
56
  Requires-Dist: jinja2>=3.1.6; extra == 'examples'
57
57
  Requires-Dist: jupyter>=1.1.1; extra == 'examples'
58
- Requires-Dist: marimo>=0.11.28; extra == 'examples'
59
- Requires-Dist: streamlit>=1.44.0; extra == 'examples'
58
+ Requires-Dist: marimo>=0.12.2; extra == 'examples'
59
+ Requires-Dist: streamlit>=1.44.1; extra == 'examples'
60
60
  Description-Content-Type: text/markdown
61
61
 
62
62
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "oe-python-template"
3
- version = "0.8.15"
3
+ version = "0.8.16"
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" }]
@@ -60,10 +60,13 @@ classifiers = [
60
60
  requires-python = ">=3.11, <4.0"
61
61
 
62
62
  dependencies = [
63
+ # From Template
63
64
  "fastapi[standard,all]>=0.115.12",
64
- "pydantic>=2.10.6",
65
+ "pydantic>=2.11.1",
65
66
  "pydantic-settings>=2.8.1",
66
67
  "typer>=0.15.1",
68
+ # Custom
69
+ # Nothing yet
67
70
  ]
68
71
 
69
72
  [project.scripts]
@@ -88,8 +91,8 @@ packages = ["src/oe_python_template"]
88
91
 
89
92
  [project.optional-dependencies]
90
93
  examples = [
91
- "streamlit>=1.44.0",
92
- "marimo>=0.11.28",
94
+ "streamlit>=1.44.1",
95
+ "marimo>=0.12.2",
93
96
  "jupyter>=1.1.1",
94
97
  "jinja2>=3.1.6",
95
98
  ]
@@ -112,11 +115,12 @@ dev = [
112
115
  "pyright>=1.1.398",
113
116
  "pytest>=8.3.5",
114
117
  "pytest-asyncio>=0.26.0",
115
- "pytest-cov>=6.0.0",
118
+ "pytest-cov>=6.1.0",
116
119
  "pytest-docker>=3.2.0",
117
120
  "pytest-env>=1.1.5",
118
121
  "pytest-regressions>=2.7.0",
119
122
  "pytest-subprocess>=1.5.3",
123
+ "pytest-timeout>=2.3.1",
120
124
  "pytest-xdist[psutil]>=3.6.1",
121
125
  "ruff>=0.11.2",
122
126
  "sphinx>=8.2.3",
@@ -130,7 +134,7 @@ dev = [
130
134
  "sphinxext.opengraph>=0.9.1",
131
135
  "swagger-plugin-for-sphinx>=5.1.0",
132
136
  "tomli>=2.1.0",
133
- "types-pyyaml>=6.0.12.20250326",
137
+ "types-pyyaml>=6.0.12.20250402",
134
138
  "watchdog>=6.0.0",
135
139
  ]
136
140
 
@@ -227,15 +231,18 @@ warn_required_dynamic_aliases = true
227
231
  warn_untyped_fields = true
228
232
 
229
233
  [tool.pytest.ini_options]
230
- addopts = "-v --cov=oe_python_template --cov-report=term-missing --cov-report=xml:reports/coverage.xml --cov-report=html:reports/coverage_html"
234
+ addopts = "-v --strict-markers --cov=oe_python_template --cov-report=term-missing --cov-report=xml:reports/coverage.xml --cov-report=html:reports/coverage_html"
231
235
  testpaths = ["tests"]
232
236
  python_files = ["*_test.py"]
233
237
  asyncio_mode = "auto"
234
238
  asyncio_default_fixture_loop_scope = "function"
235
239
  env = ["COVERAGE_FILE=.coverage", "COVERAGE_PROCESS_START=pyproject.toml"]
236
240
  markers = [
237
- "sequential: exclude from parallel test execution",
241
+ # From Template
238
242
  "no_extras: tests that do require no extras installed",
243
+ "sequential: exclude from parallel test execution",
244
+ # Custom
245
+ # Nothing yet
239
246
  ]
240
247
 
241
248
  [tool.coverage.run]
@@ -252,7 +259,7 @@ source = ["src/"]
252
259
 
253
260
 
254
261
  [tool.bumpversion]
255
- current_version = "0.8.15"
262
+ current_version = "0.8.16"
256
263
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
257
264
  serialize = ["{major}.{minor}.{patch}"]
258
265
  search = "{current_version}"