oe-python-template-example 0.3.2__tar.gz → 0.3.4__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-example
3
- Version: 0.3.2
3
+ Version: 0.3.4
4
4
  Summary: 🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
5
5
  Project-URL: Homepage, https://oe-python-template-example.readthedocs.io/en/latest/
6
6
  Project-URL: Documentation, https://oe-python-template-example.readthedocs.io/en/latest/
@@ -411,13 +411,13 @@ Or use docker compose
411
411
  The .env is passed through from the host to the Docker container.
412
412
 
413
413
  ```shell
414
- docker compose run oe-python-template-example --help
415
- docker compose run oe-python-template-example hello-world
416
- docker compose run oe-python-template-example echo --help
417
- docker compose run oe-python-template-example echo "Lorem"
418
- docker compose run oe-python-template-example echo "Lorem" --json
419
- docker compose run oe-python-template-example openapi
420
- docker compose run oe-python-template-example openapi --output-format=json
414
+ docker compose run --remove-orphans oe-python-template-example --help
415
+ docker compose run --remove-orphans oe-python-template-example hello-world
416
+ docker compose run --remove-orphans oe-python-template-example echo --help
417
+ docker compose run --remove-orphans oe-python-template-example echo "Lorem"
418
+ docker compose run --remove-orphans oe-python-template-example echo "Lorem" --json
419
+ docker compose run --remove-orphans oe-python-template-example openapi
420
+ docker compose run --remove-orphans oe-python-template-example openapi --output-format=json
421
421
  echo "Running OE Python Template Example's API container as a daemon ..."
422
422
  docker compose up -d
423
423
  echo "Waiting for the API server to start ..."
@@ -350,13 +350,13 @@ Or use docker compose
350
350
  The .env is passed through from the host to the Docker container.
351
351
 
352
352
  ```shell
353
- docker compose run oe-python-template-example --help
354
- docker compose run oe-python-template-example hello-world
355
- docker compose run oe-python-template-example echo --help
356
- docker compose run oe-python-template-example echo "Lorem"
357
- docker compose run oe-python-template-example echo "Lorem" --json
358
- docker compose run oe-python-template-example openapi
359
- docker compose run oe-python-template-example openapi --output-format=json
353
+ docker compose run --remove-orphans oe-python-template-example --help
354
+ docker compose run --remove-orphans oe-python-template-example hello-world
355
+ docker compose run --remove-orphans oe-python-template-example echo --help
356
+ docker compose run --remove-orphans oe-python-template-example echo "Lorem"
357
+ docker compose run --remove-orphans oe-python-template-example echo "Lorem" --json
358
+ docker compose run --remove-orphans oe-python-template-example openapi
359
+ docker compose run --remove-orphans oe-python-template-example openapi --output-format=json
360
360
  echo "Running OE Python Template Example's API container as a daemon ..."
361
361
  docker compose up -d
362
362
  echo "Waiting for the API server to start ..."
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "oe-python-template-example"
3
- version = "0.3.2"
3
+ version = "0.3.4"
4
4
  description = "🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template)."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -242,10 +242,12 @@ asyncio_default_fixture_loop_scope = "function"
242
242
  env = ["COVERAGE_FILE=.coverage", "COVERAGE_PROCESS_START=pyproject.toml"]
243
243
  markers = [
244
244
  # From Template
245
- "no_extras: tests that do require no extras installed",
246
- "scheduled: tests to run on a schedule",
247
- "sequential: exclude from parallel test execution",
248
- "skip_with_act: don't run with act",
245
+ "no_extras: Tests that do require no extras installed.",
246
+ "scheduled: Tests to run on a schedule. They will still be part on non-scheduled test executions.",
247
+ "sequential: Exclude from parallel test execution.",
248
+ "skip_with_act: Don't run with act.",
249
+ "docker: tests That require Docker.",
250
+ "long_running: Tests that take a long time to run. Tests marked as long runing excluded from execution by default. Enable by passing any -m your_marker that matches a marker of the test.",
249
251
  # Custom
250
252
  # Nothing yet
251
253
  ]
@@ -264,7 +266,7 @@ source = ["src/"]
264
266
 
265
267
 
266
268
  [tool.bumpversion]
267
- current_version = "0.3.2"
269
+ current_version = "0.3.4"
268
270
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
269
271
  serialize = ["{major}.{minor}.{patch}"]
270
272
  search = "{current_version}"