Skip to content

Commit

Permalink
build: bump version to 3.0.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerFi committed Sep 13, 2022
1 parent 395f264 commit cf17f2a
Showing 1 changed file with 43 additions and 18 deletions.
61 changes: 43 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aioswitcher"
version = "2.0.11.dev"
version = "3.0.0"
description = "Switcher Python Integration."
license = "Apache-2.0"
authors = [ "Tomer Figenblat <[email protected]>" ]
Expand Down Expand Up @@ -32,14 +32,46 @@ exclude = [

[tool.poetry.dependencies]
python = "^3.9.0"
mkdocs = {extras = ["docs"], version = "^1.3.0", optional = true}
mkdocs-git-revision-date-plugin = {extras = ["docs"], version = "^0.3.2", optional = true}
mkdocs-material = {extras = ["docs"], version = "^8.3.8", optional = true}
mkdocstrings = {extras = ["docs"], version = "^0.19.0", optional = true}
mkdocstrings-python = {extras = ["docs"], version = "^0.7.1", optional = true}
mkdocs-autorefs = {extras = ["docs"], version = "^0.4.1", optional = true}
mkdocs-linkcheck = {extras = ["docs"], version = "^1.0.6", optional = true}
mkdocs-spellcheck = {extras = ["docs"], version = "^0.2.1", optional = true}

[tool.poetry.dependencies.mkdocs]
extras = [ "docs" ]
version = "^1.3.0"
optional = true

[tool.poetry.dependencies.mkdocs-git-revision-date-plugin]
extras = [ "docs" ]
version = "^0.3.2"
optional = true

[tool.poetry.dependencies.mkdocs-material]
extras = [ "docs" ]
version = "^8.3.8"
optional = true

[tool.poetry.dependencies.mkdocstrings]
extras = [ "docs" ]
version = "^0.19.0"
optional = true

[tool.poetry.dependencies.mkdocstrings-python]
extras = [ "docs" ]
version = "^0.7.1"
optional = true

[tool.poetry.dependencies.mkdocs-autorefs]
extras = [ "docs" ]
version = "^0.4.1"
optional = true

[tool.poetry.dependencies.mkdocs-linkcheck]
extras = [ "docs" ]
version = "^1.0.6"
optional = true

[tool.poetry.dependencies.mkdocs-spellcheck]
extras = [ "docs" ]
version = "^0.2.1"
optional = true

[tool.poetry.dev-dependencies]
assertpy = "^1.1"
Expand Down Expand Up @@ -70,7 +102,7 @@ exclude = [
"mkdocs-autorefs",
"mkdocs-linkcheck",
"mkdocs-spellcheck"
]
]

[tool.poe.tasks]
test = "poetry run pytest -v"
Expand All @@ -82,14 +114,7 @@ install_dev = "poetry install --no-interaction --no-root"
install_docs = "poetry install --no-interaction --no-root -E docs"
build = "poetry build"
lic_check = "deno run --unstable --allow-read https://deno.land/x/[email protected]/main.ts"
lint = [
"black",
"doc8",
"flake8",
"isort",
"mypy",
"yamllint"
]
lint = [ "black", "doc8", "flake8", "isort", "mypy", "yamllint" ]
black = "poetry run black --check src/ docs/ scripts/"
black_fix = "poetry run black src/ docs/ scripts/"
doc8 = "poetry run doc8 docs/"
Expand Down

0 comments on commit cf17f2a

Please sign in to comment.