Skip to content

Commit

Permalink
python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
brunopenso committed Sep 22, 2020
1 parent ce54198 commit cab4a7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
python-version: '3.6' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

- run: make ci-dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
python-version: '3.6' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

- run: python3 -m pip install --user --upgrade setuptools wheel
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="nfceget", # Replace with your own username
version="1.0.2",
version="1.0.3",
author="Bruno Penso",
description="Pacote para recuperar uma NFCE (nota fiscal consumidor eletronica) e transformar em json.",
long_description=long_description,
Expand All @@ -17,5 +17,5 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
python_requires='>=3.6',
)

0 comments on commit cab4a7d

Please sign in to comment.