Skip to content

Commit

Permalink
👷 build(): Remove import from py files and cache warning #34
Browse files Browse the repository at this point in the history
  • Loading branch information
MauronMP committed Nov 23, 2022
1 parent 9c8aa26 commit fd678de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
14 changes: 5 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,8 @@ name = "PMP_IV"
version = "0.0.5"
description = "Gestor dependencias para objetivo 3 en adelante"
authors = ["Pablo Morenilla <MauronMP>"]
readme = ["docs/Gestor_Dependencias.md", "README.md"]
repository = "https://github.com/MauronMP/PMP_IV/"
documentation = "https://github.com/MauronMP/PMP_IV/tree/Objetivo-3/docs" #Temporal, después será la rama main

packages = [
{ include = "pmp_iv/**/*.py" },
{ include = "pmp_iv/*.py" },
]

documentation = "https://github.com/MauronMP/PMP_IV/tree/Objetivo-5/docs"

[tool.poetry.dependencies]
python = ">=3.8"
Expand All @@ -21,4 +14,7 @@ pytest = "^7.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"


[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
]
1 change: 0 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from invoke import task, run
import os

@task
def install(c):
Expand Down
1 change: 0 additions & 1 deletion tests/test_pmp_iv.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os
import pytest
from pmp_iv.eda import *
from pmp_iv.correlacion_area import *
Expand Down

0 comments on commit fd678de

Please sign in to comment.