Skip to content

Commit

Permalink
2.0.0rc2 release
Browse files Browse the repository at this point in the history
Minor changes in build files, version bump, dependencies updates
  • Loading branch information
ldotlopez committed Jan 5, 2024
1 parent 9b209fe commit 65171e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
rev: v4.5.0
hooks:
- id: end-of-file-fixer
exclude: '\.bin$'
Expand All @@ -14,18 +14,18 @@ repos:
- id: debug-statements

- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.15.0
hooks:
- id: pyupgrade
args: ['--py311-plus']

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.0
hooks:
- id: isort
args: ['--profile', 'black']

- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.12.1
hooks:
- id: black
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

[project]
name = "ideenergy"
version = "2.0.0rc1"
version = "2.0.0rc2"
dependencies = [
"aiohttp <4.0,>=3.8",
"importlib-metadata; python_version >= '3.9'",
"importlib-metadata; python_version >= '3.11'",
]
authors = [
{name = "Luis López", email = "[email protected]"},
Expand All @@ -18,7 +18,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">3.9"
requires-python = ">=3.11"

[project.scripts]
ideenergy = "ideenergy.cli:main"
Expand Down Expand Up @@ -47,5 +47,8 @@ profile = "black"
[tool.mypy]
files = ["ideenergy"]

[tool.pyupgrade]
addopts = "--py311-plus"

[tool.setuptools]
packages = ["ideenergy"]

0 comments on commit 65171e0

Please sign in to comment.