Skip to content

Commit

Permalink
Bump version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devon-mar committed Oct 27, 2021
1 parent e847dac commit ae69e0b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 27 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Release

"on":
release:
types: [published]


jobs:
poetry-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
54 changes: 27 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[tool.poetry]
name = "nornir_paramiko"
version = "0.1.0"
description = ""
authors = ["Devon Mar <[email protected]>"]

[tool.poetry.plugins."nornir.plugins.connections"]
"paramiko" = "nornir_paramiko.plugins.connections:Paramiko"

[tool.poetry.dependencies]
python = "^3.6"
paramiko = "^2.7"
nornir = "^3.0.0"
scp = "^0.13.3"
sphinx = {version = "^3", optional = true}
sphinx-rtd-theme = {version = "^0.5.2", optional = true}
sphinx-autodoc-typehints = {version = "^1.12.0", optional = true}

[tool.poetry.dev-dependencies]
pytest = "^5.2"

[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-autodoc-typehints"]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nornir_paramiko"
version = "0.2.0"
description = ""
authors = ["Devon Mar <[email protected]>"]

[tool.poetry.plugins."nornir.plugins.connections"]
"paramiko" = "nornir_paramiko.plugins.connections:Paramiko"

[tool.poetry.dependencies]
python = "^3.6"
paramiko = "^2.7"
nornir = "^3.0.0"
scp = "^0.13.3"
sphinx = {version = "^3", optional = true}
sphinx-rtd-theme = {version = "^0.5.2", optional = true}
sphinx-autodoc-typehints = {version = "^1.12.0", optional = true}

[tool.poetry.dev-dependencies]
pytest = "^5.2"

[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-autodoc-typehints"]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit ae69e0b

Please sign in to comment.