From 7e058f9c3d3c968121b5257824fd655272d1e0ca Mon Sep 17 00:00:00 2001 From: Valentin Marquez Date: Sun, 4 Jun 2023 22:52:17 -0400 Subject: [PATCH] workflow fix --- .github/workflows/publish.yml | 2 +- {rut.py => rutpy}/__init__.py | 0 {rut.py => rutpy}/core/__init__.py | 0 {rut.py => rutpy}/core/rut.py | 0 {rut.py => rutpy}/setup.py | 0 {rut.py => rutpy}/tests/__init__.py | 0 {rut.py => rutpy}/tests/test_rut.py | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename {rut.py => rutpy}/__init__.py (100%) rename {rut.py => rutpy}/core/__init__.py (100%) rename {rut.py => rutpy}/core/rut.py (100%) rename {rut.py => rutpy}/setup.py (100%) rename {rut.py => rutpy}/tests/__init__.py (100%) rename {rut.py => rutpy}/tests/test_rut.py (100%) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b5eeb30..fcd9305 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,7 +24,7 @@ jobs: pip install wheel twine - name: Construir el paquete - run: python setup.py sdist bdist_wheel + run: python rutpy/setup.py sdist bdist_wheel - name: Publicar en PyPI env: diff --git a/rut.py/__init__.py b/rutpy/__init__.py similarity index 100% rename from rut.py/__init__.py rename to rutpy/__init__.py diff --git a/rut.py/core/__init__.py b/rutpy/core/__init__.py similarity index 100% rename from rut.py/core/__init__.py rename to rutpy/core/__init__.py diff --git a/rut.py/core/rut.py b/rutpy/core/rut.py similarity index 100% rename from rut.py/core/rut.py rename to rutpy/core/rut.py diff --git a/rut.py/setup.py b/rutpy/setup.py similarity index 100% rename from rut.py/setup.py rename to rutpy/setup.py diff --git a/rut.py/tests/__init__.py b/rutpy/tests/__init__.py similarity index 100% rename from rut.py/tests/__init__.py rename to rutpy/tests/__init__.py diff --git a/rut.py/tests/test_rut.py b/rutpy/tests/test_rut.py similarity index 100% rename from rut.py/tests/test_rut.py rename to rutpy/tests/test_rut.py