Skip to content

Commit

Permalink
Release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazoyer committed Feb 14, 2024
1 parent 9ed71da commit 33541cc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 26 deletions.
5 changes: 3 additions & 2 deletions pyixapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from pyixapi.core.api import API as api
from pyixapi.core.query import ContentError, RequestError
from .core.api import API as api
from .core.api import __version__ # noqa: F401
from .core.query import ContentError, RequestError

__all__ = ("api", "ContentError", "RequestError")
2 changes: 1 addition & 1 deletion pyixapi/core/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
RoleAssignment,
)

__version__ = "0.2.1"
__version__ = "0.2.2"


class API(object):
Expand Down
36 changes: 13 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyixapi"
version = "0.2.1"
version = "0.2.2"
description = "Python API client library for IX-API"
authors = ["Guillaume Mazoyer <oss@mazoyer.eu>"]
readme = "README.md"
Expand Down Expand Up @@ -36,34 +36,24 @@ exclude = [
"build",
"dist",
"examples",
"__main__.py",
]

[tool.ruff.lint]
preview = true

select = [
# mccabe complexity
"C90",
# pycodestyle errors
"E",
# pycodestyle warnings
"W",
# pyflakes
"F",
# isort-like checks
"I",
# flake8-datetimez
"DTZ",
# flake8-import-conventions
"ICN",
# flake8-type-checking
"TCH",
# flake8-debugger
"T10",
# flake8-quotes
"Q",
# flake8-2020
"YTT",
"C90", # mccabe complexity
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort-like checks
"DTZ", # flake8-datetimez
"ICN", # flake8-import-conventions
"TCH", # flake8-type-checking
"T10", # flake8-debugger
"Q", # flake8-quotes
"YTT", # flake8-2020
]

task-tags = ["FIXME", "TODO", "XXX"]
Expand Down

0 comments on commit 33541cc

Please sign in to comment.