Skip to content
Draft
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/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python 3.9.10
python 3.10.20
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This client is generated using the [OpenAPI Generator](https://openapi-generator

## Requirements

Python 3.8+
Python 3.10+

## Installation

Expand Down
21 changes: 9 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ readme = "README.md"
keywords = ["finance", "ynab", "budgeting", "api"]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"

urllib3 = ">= 1.25.3 < 3.0.0"
urllib3 = ">= 2.7.0, < 3.0.0"
python-dateutil = ">= 2.8.2"
pydantic = ">= 2"
typing-extensions = ">= 4.7.1"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 2.1.0, < 3.0.0
urllib3 >= 2.7.0, < 3.0.0
python_dateutil >= 2.8.2
pydantic >= 2.11
typing-extensions >= 4.7.1
4 changes: 2 additions & 2 deletions templates/pyproject.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ readme = "README.md"
keywords = ["finance", "ynab", "budgeting", "api"]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"

urllib3 = ">= 1.25.3 < 3.0.0"
urllib3 = ">= 2.7.0, < 3.0.0"
python-dateutil = ">= 2.8.2"
{{#asyncio}}
aiohttp = ">= 3.8.4"
Expand Down