Skip to content

Commit

Permalink
Python 3.6 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Hernandez committed Sep 19, 2020
1 parent 70ed841 commit 7c53afe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pyflow.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test PyFlowCL
name: pytest

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: [3.6, 3.7, 3.8]
poetry-version: [1.0.10]
max-parallel: 1
steps:
Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyflowcl"
version = "1.0.1"
version = "1.0.2"
description = "Cliente para comunicacion con flowAPI-3 de flow.cl"
authors = ["Mario Hernandez <[email protected]>"]
license = "MIT"
Expand All @@ -9,20 +9,23 @@ repository = "https://github.com/mariofix/pyflowcl"
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.6"
requests = "^2.24.0"
dataclasses = { version = "*", python = "3.6" }

[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest = "^6.0"
pytest-pep8 = "^1.0.6"
black = "^19.10b0"
flake8 = "^3.8.3"
tox = "^3.20.0"

[build-system]
requires = ["poetry>=0.12"]
Expand Down

0 comments on commit 7c53afe

Please sign in to comment.