oe-python-template 0.7.5__tar.gz → 0.7.7__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.7.5
3
+ Version: 0.7.7
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/
@@ -55,8 +55,8 @@ 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.26; extra == 'examples'
59
- Requires-Dist: streamlit>=1.43.2; extra == 'examples'
58
+ Requires-Dist: marimo>=0.11.28; extra == 'examples'
59
+ Requires-Dist: streamlit>=1.44.0; 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.7.5"
3
+ version = "0.7.7"
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" }]
@@ -88,8 +88,8 @@ packages = ["src/oe_python_template"]
88
88
 
89
89
  [project.optional-dependencies]
90
90
  examples = [
91
- "streamlit>=1.43.2",
92
- "marimo>=0.11.26",
91
+ "streamlit>=1.44.0",
92
+ "marimo>=0.11.28",
93
93
  "jupyter>=1.1.1",
94
94
  "jinja2>=3.1.6",
95
95
  ]
@@ -109,7 +109,7 @@ dev = [
109
109
  "pip-audit>=2.8.0",
110
110
  "pip-licenses>=5.0.0",
111
111
  "pre-commit>=4.1.0",
112
- "pyright>=1.1.396",
112
+ "pyright>=1.1.398",
113
113
  "pytest>=8.3.5",
114
114
  "pytest-asyncio>=0.26.0",
115
115
  "pytest-cov>=6.0.0",
@@ -118,7 +118,7 @@ dev = [
118
118
  "pytest-regressions>=2.7.0",
119
119
  "pytest-subprocess>=1.5.3",
120
120
  "pytest-xdist[psutil]>=3.6.1",
121
- "ruff>=0.10.0",
121
+ "ruff>=0.11.2",
122
122
  "sphinx>=8.2.3",
123
123
  "sphinx-autobuild>=2024.10.3",
124
124
  "sphinx-copybutton>=0.5.2",
@@ -130,7 +130,7 @@ dev = [
130
130
  "sphinxext.opengraph>=0.9.1",
131
131
  "swagger-plugin-for-sphinx>=5.1.0",
132
132
  "tomli>=2.1.0",
133
- "types-pyyaml>=6.0.12.20241230",
133
+ "types-pyyaml>=6.0.12.20250326",
134
134
  "watchdog>=6.0.0",
135
135
  ]
136
136
 
@@ -252,7 +252,7 @@ source = ["src/"]
252
252
 
253
253
 
254
254
  [tool.bumpversion]
255
- current_version = "0.7.5"
255
+ current_version = "0.7.7"
256
256
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
257
257
  serialize = ["{major}.{minor}.{patch}"]
258
258
  search = "{current_version}"