From cb6d2dff048d13397edbb2f1eb43317d4be41dfb Mon Sep 17 00:00:00 2001 From: Hudson Brendon Date: Wed, 1 May 2024 20:39:20 -0300 Subject: [PATCH] fix: fix python version to 3.7 --- pypicpay/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_picpay.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pypicpay/__init__.py b/pypicpay/__init__.py index e3a146b..90c3250 100644 --- a/pypicpay/__init__.py +++ b/pypicpay/__init__.py @@ -1,3 +1,3 @@ from .picpay import PicPay # noqa: F401 -__version__ = "0.4.7" +__version__ = "0.4.8" diff --git a/pyproject.toml b/pyproject.toml index c36bfd9..263915e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pypicpay" -version = "0.4.7" +version = "0.4.8" description = "Aceite PicPay e faça parte do movimento que está revolucionando a relação com o dinheiro no Brasil." authors = ["Hudson Brendon "] license = "MIT" diff --git a/tests/test_picpay.py b/tests/test_picpay.py index 9cebc26..243ef9a 100644 --- a/tests/test_picpay.py +++ b/tests/test_picpay.py @@ -2,7 +2,7 @@ def test_version(): - assert __version__ == "0.4.7" + assert __version__ == "0.4.8" class TestPicPay: