Skip to content

Commit

Permalink
🚑️ Remove poetry version plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Aug 20, 2021
1 parent 4eddc85 commit b2e50ac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry --pre
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
Expand Down
2 changes: 0 additions & 2 deletions fastapi_health/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from fastapi_health.route import health

__version__ = "0.4.0"

__all__ = ["health"]
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fastapi-health"
version = "0"
version = "0.4.0"
description = "Heath check on FastAPI applications."
authors = ["Marcelo Trylesinski <marcelotryle@gmail.com>"]
readme = "README.md"
Expand Down Expand Up @@ -40,6 +40,3 @@ requests = "^2.25.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry-version-plugin]
source = "init"

0 comments on commit b2e50ac

Please sign in to comment.