Skip to content

Commit 9cb93ed

Browse files
authored
Merge pull request #391 from leogregianin/main
Update version
2 parents 36ac5eb + 74d39fa commit 9cb93ed

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pynfe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def get_version():
2-
return "0.5.2"
2+
return "0.5.3"
33

44

55
__version__ = get_version()

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
#!/usr/bin/env python
22
import setuptools
33

4+
from pynfe import __version__
5+
6+
47
with open("README.md", "r", encoding="utf-8") as fh:
58
long_description = fh.read()
69

710
setuptools.setup(
811
name="PyNFe",
9-
version="0.5.2",
12+
version=__version__,
1013
author="TadaSoftware",
1114
author_email="[email protected]",
1215
description="Interface library with the Brazilian Electronic Invoice web services",

0 commit comments

Comments
 (0)