Skip to content
Open
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: 0 additions & 2 deletions .github/workflows/auto-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
Expand Down Expand Up @@ -53,7 +52,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Japanese: https://developers.line.biz/ja/docs/messaging-api/overview/
Requirements
------------

- Python >= 3.9
- Python >= 3.10

Installation
------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,7 @@ public String generatePackageName(String packageName) {

@Override
public String generatorLanguageVersion() {
return "3.9+";
return "3.10+";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/{{{gitRepoId}}}/{{{gitUserId}}}"
keywords = ["OpenAPI", "OpenAPI-Generator", "{{{appName}}}"]

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

urllib3 = ">= 1.25.3"
python-dateutil = ">=2.8.2"
Expand All @@ -21,14 +21,14 @@ tornado = ">=4.2,<5"
{{/tornado}}
{{#hasHttpSignatureMethods}}
pem = ">= 19.3.0"
pycryptodome = ">= 3.9.0"
pycryptodome = ">= 3.10.0"
{{/hasHttpSignatureMethods}}
pydantic = "^1.10.5, <2"
aenum = ">=3.1.11"

[tool.poetry.dev-dependencies]
pytest = ">=7.2.1"
tox = ">=3.9.0"
tox = ">=3.10.0"
Comment on lines +24 to +31
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These will probably work even without updating, but it should also be fine to keep the changes as they are.

flake8 = ">=4.0.0"

[build-system]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301
# http://pypi.python.org/pypi/setuptools
NAME = "{{{projectName}}}"
VERSION = "{{packageVersion}}"
PYTHON_REQUIRES = ">=3.9"
PYTHON_REQUIRES = ">=3.10"
{{#apiInfo}}
{{#apis}}
{{#-last}}
Expand All @@ -27,7 +27,7 @@ REQUIRES = [
{{/tornado}}
{{#hasHttpSignatureMethods}}
"pem>=19.3.0",
"pycryptodome>=3.9.0",
"pycryptodome>=3.10.0",
{{/hasHttpSignatureMethods}}
"pydantic >= 1.10.5, < 2",
"aenum"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def run(self):
long_description=long_description,
license='Apache License 2.0',
packages=find_packages(include=["linebot*"]),
python_requires=">=3.9.0",
python_requires=">=3.10.0",
install_requires=_requirements(),
tests_require=_requirements_test(),
cmdclass={
Expand All @@ -200,7 +200,6 @@ def run(self):
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist =
py3.9,
py3.10,
py3.11,
py3.12,
Expand Down