Skip to content

Commit

Permalink
Change min python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhcc committed Jan 30, 2025
1 parent 9a43170 commit ff67572
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,14 @@ keywords = [
classifiers = [
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: SQL',
'Topic :: Office/Business :: Financial :: Accounting',
]
requires-python = '>= 3.8'
requires-python = '>= 3.9'
dependencies = [
'beancount >= 2.3.4',
'python-dateutil >= 2.6.0',
Expand All @@ -56,7 +54,7 @@ exclude_also = [

[tool.ruff]
line-length = 92
target-version = 'py38'
target-version = 'py39'

[tool.ruff.lint]
select = ['E', 'F', 'W', 'UP', 'B', 'C4', 'PL', 'RUF']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"bean-price = beanprice.price:main",
]
},
python_requires=">=3.5",
python_requires=">=3.9",
)

0 comments on commit ff67572

Please sign in to comment.