Explorar el Código

Remove setup requires

dinhlongnguyen hace 1 año
padre
commit
f6fbc26b26
Se han modificado 2 ficheros con 1 adiciones y 6 borrados
  1. 1 3
      .github/workflows/release.yml
  2. 0 3
      setup.py

+ 1 - 3
.github/workflows/release.yml

@@ -71,14 +71,12 @@ jobs:
           python -m pip install --upgrade pip
           pip install build wheel
           # install taipy-gui from based on setup.py version
+          pip install "${{ steps.taipy_gui_version.outputs.VERSION }}"
 
       - name: Build and test the package
         run: |
           python setup.py build_py && python -m build
-          pwd
-          ls -l .
           rm -rf taipy
-          ls -l dist/
           pip install dist/*.tar.gz
           python -c "import taipy as tp; tp.Scenario"
           python -c "import taipy as tp; tp.gui"

+ 0 - 3
setup.py

@@ -38,8 +38,6 @@ requirements = [
     "taipy-templates>=3.0,<3.1",
 ]
 
-setup_requirements = [(requirement for requirement in requirements if requirement.startswith("taipy-gui"))]
-
 test_requirements = ["pytest>=3.8"]
 
 extras_require = {
@@ -95,7 +93,6 @@ setup(
         "Programming Language :: Python :: 3.11",
     ],
     description="A 360° open-source platform from Python pilots to production-ready web apps.",
-    setup_requires=setup_requirements,
     install_requires=requirements,
     entry_points={
         "console_scripts": [