Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.11", "3.12", "3.13" ]

steps:

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.11", "3.12", "3.13" ]

steps:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.11", "3.12", "3.13" ]

steps:

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.11", "3.12", "3.13" ]

steps:

Expand Down
2 changes: 1 addition & 1 deletion Automation/Scripts/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
name = "automation-scripts"
version = "4.0.0+development"
description = "Automation scripts for the local project"
requires-python = ">= 3.9"
requires-python = ">= 3.11"

dependencies = [
"bhamon-development-toolkit[python] ~= 3.1.0",
Expand Down
28 changes: 14 additions & 14 deletions Sources/toolkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
name = "bhamon-development-toolkit"
version = "4.0.0+development"
description = "Toolkit for automating software development tasks"
requires-python = ">= 3.9"
requires-python = ">= 3.11"

authors = [
{ name = "Benjamin Hamon", email = "development@benjaminhamon.com" }
Expand All @@ -31,29 +31,29 @@ dependencies = []
all = [

# Python
"pyinstaller ~= 6.12.0",
"pylint ~= 3.3.6",
"pytest ~= 8.3.5",
"pytest-asyncio ~= 0.26.0",
"pyinstaller ~= 6.16.0",
"pylint ~= 3.3.8",
"pytest ~= 8.4.2",
"pytest-asyncio ~= 1.2.0",
"pytest-json ~= 0.4.0",
"twine ~= 6.1.0",
"twine ~= 6.2.0",

]

python = [
"pyinstaller ~= 6.12.0",
"pylint ~= 3.3.6",
"pytest ~= 8.3.5",
"pytest-asyncio ~= 0.26.0",
"pyinstaller ~= 6.16.0",
"pylint ~= 3.3.8",
"pytest ~= 8.4.2",
"pytest-asyncio ~= 1.2.0",
"pytest-json ~= 0.4.0",
"twine ~= 6.1.0",
"twine ~= 6.2.0",
]

dev = [
"mockito ~= 1.5.4",
"pylint ~= 3.3.6",
"pytest ~= 8.3.5",
"pytest-asyncio ~= 0.26.0",
"pylint ~= 3.3.8",
"pytest ~= 8.4.2",
"pytest-asyncio ~= 1.2.0",
"pytest-json ~= 0.4.0",
]

Expand Down
10 changes: 6 additions & 4 deletions cspell.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---

# cspell:words pycache pytest venv

---
files:
- "**"
- "**/.*/**"

ignorePaths:
- ".git/**"
Expand All @@ -11,11 +15,9 @@ ignorePaths:
- "**/*.egg-info/**"
- "Artifacts/**"
- "Sources/*/build/**"
- "Sources/*/dist/**"

words:
- benjaminhamon
- bhamon
- hamon

enableFiletypes:
- toml
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ log_level = DEBUG
log_format = %(asctime)s [%(levelname)s][%(name)s] %(message)s
log_date_format = %Y-%m-%dT%H:%M:%S

asyncio_default_fixture_loop_scope = "function"
asyncio_default_fixture_loop_scope = function