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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
FORCE_COLOR: "1"
PYTHON_LATEST: "3.13"
PYTHON_LATEST: "3.14"

jobs:
deploy-pypi:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

env:
FORCE_COLOR: "1"
PYTHON_LATEST: "3.13"
PYTHON_LATEST: "3.14"

jobs:
linting:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
python-version: ["3.14"]

steps:
- uses: actions/checkout@v3
Expand Down
1,033 changes: 645 additions & 388 deletions poetry.lock

Large diffs are not rendered by default.

23 changes: 14 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,27 @@ authors = [
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.13,<3.14"
python = ">=3.14,<4.0"
httpx = "^0.28.1"
tenacity = "^9.1.2"
structlog = "^23.1.0"
tenacity = "^9.1.4"
structlog = "^25.5.0"

[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
flake8-bugbear = "^23.7.10"
isort = "^5.9.3"
pytest = "^7.1.3"
# Linting
black = "^26.1.0"
flake8 = "^7.3.0"
flake8-bugbear = "^25.11.29"
isort = "^5.12.0"

# Testing
pytest = "^9.0.2"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.0.0"
pytest-docker-tools = "^3.1.3"
pytest-mock = "^3.10.0"
mypy = "^1.5.1"

# Typing
mypy = "^1.19.1"
GitPython = "^3.1.29"

[tool.black]
Expand Down
2 changes: 1 addition & 1 deletion src/foxops_client/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class FoxopsApiError(Exception):
def __init__(self, message: str):
super().__init__()
super().__init__(message)
self.message = message


Expand Down
6 changes: 2 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,12 @@ def template(gitlab_api_client, locally_cloned_gitlab_project):
(Path(root_dir) / "template").mkdir()

(Path(root_dir) / "template" / "README.md").write_text("{{ input_variable }}")
(Path(root_dir) / "fengine.yaml").write_text(
"""
(Path(root_dir) / "fengine.yaml").write_text("""
variables:
input_variable:
type: string
description: dummy input variable
"""
)
""")

repo.git.add(".")
repo.git.commit("-m", "Initial commit")
Expand Down