Skip to content

Commit

Permalink
Cambios menores
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Hernandez committed Jan 17, 2022
1 parent 853ba83 commit db2162e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pyflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
poetry-version: [1.1.7]
python-version: [3.7, 3.8, 3.9, 3.10]
poetry-version: [1.1.12]
max-parallel: 1
steps:
- name: Checkout Repo
Expand All @@ -22,7 +22,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Set Up Poetry
uses: abatilo/actions-poetry@v2.0.0
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install Repo
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Este proyecto está desarrollado para Python 3.7 y superior.
Para soporte Python 3.6 revisar la rama **stable-py36**.
Este proyecto es administrado por Poetry.
Se entrega archivo requirements.txt para PIP.
Ejemplos en flow_client.py


---
Expand Down
2 changes: 1 addition & 1 deletion docs/modules.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pyflowcl
======
========

.. toctree::
:maxdepth: 4
Expand Down
8 changes: 0 additions & 8 deletions docs/pyflowcl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,6 @@ pyflowcl.Clients module
:undoc-members:
:show-inheritance:

pyflowcl.Customer module
------------------------

.. automodule:: pyflowcl.Customer
:members:
:undoc-members:
:show-inheritance:

pyflowcl.Payment module
-----------------------

Expand Down
11 changes: 9 additions & 2 deletions pyflowcl/Payment.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
from dataclasses import asdict
from typing import Any, Dict, Union, cast
from .Clients import ApiClient
from pyflowcl.Clients import ApiClient
from pyflowcl.models import (
Error,
PaymentStatus,
PaymentRequest,
PaymentResponse,
PaymentRequestEmail,
PaymentList,
)
import logging
from .models import *


def getStatus(
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ authors = ["Mario Hernandez <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mariofix/pyflowcl"
documentation = "https://pyflowcl.readthedocs.io/es/latest/index.html"
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
Expand All @@ -30,5 +31,5 @@ sphinx = "*"
sphinx-theme = "*"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit db2162e

Please sign in to comment.