-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: bump version to 3.0.0 [skip ci]
- Loading branch information
Showing
1 changed file
with
43 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>" ] | ||
|
@@ -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" | ||
|
@@ -70,7 +102,7 @@ exclude = [ | |
"mkdocs-autorefs", | ||
"mkdocs-linkcheck", | ||
"mkdocs-spellcheck" | ||
] | ||
] | ||
|
||
[tool.poe.tasks] | ||
test = "poetry run pytest -v" | ||
|
@@ -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/" | ||
|