Prechádzať zdrojové kódy

fix: limit pipenv version to <2025.0.0 (#2596)

Đỗ Trường Giang 1 týždeň pred
rodič
commit
068f6bbe57

+ 1 - 1
.github/actions/install/action.yml

@@ -37,7 +37,7 @@ runs:
         cache-dependency-path: 'Pipfile'
         cache-dependency-path: 'Pipfile'
 
 
     - name: Install pipenv
     - name: Install pipenv
-      run: pip install pipenv --upgrade
+      run: pip install "pipenv<2025.0.0"
       shell: bash
       shell: bash
 
 
     - name: Install pipenv dependencies
     - name: Install pipenv dependencies

+ 1 - 1
.github/workflows/build-and-release-single-package.yml

@@ -141,7 +141,7 @@ jobs:
       - name: Install dependencies
       - name: Install dependencies
         run: |
         run: |
           python -m pip install --upgrade pip
           python -m pip install --upgrade pip
-          pip install build wheel pipenv mypy black isort
+          pip install build wheel "pipenv<2025.0.0" mypy black isort
 
 
       - name: Install GUI dependencies
       - name: Install GUI dependencies
         if: ${{ github.event.inputs.target_package == 'gui' || github.event.inputs.target_package == 'taipy' }}
         if: ${{ github.event.inputs.target_package == 'gui' || github.event.inputs.target_package == 'taipy' }}

+ 1 - 1
.github/workflows/build-and-release.yml

@@ -135,7 +135,7 @@ jobs:
       - name: Install dependencies
       - name: Install dependencies
         run: |
         run: |
           python -m pip install --upgrade pip
           python -m pip install --upgrade pip
-          pip install build wheel pipenv mypy black isort
+          pip install build wheel "pipenv<2025.0.0" mypy black isort
 
 
       - name: Build GUI front-end
       - name: Build GUI front-end
         if: matrix.package == 'gui'
         if: matrix.package == 'gui'

+ 3 - 3
.github/workflows/partial-tests.yml

@@ -56,7 +56,7 @@ jobs:
         run: pip install --upgrade setuptools wheel
         run: pip install --upgrade setuptools wheel
 
 
       - name: Install pipenv
       - name: Install pipenv
-        run: pip install pipenv --upgrade
+        run: pip install "pipenv<2025.0.0"
 
 
       - name: Install Dependencies
       - name: Install Dependencies
         run: pipenv install --dev --python=${{ matrix.python-version }}
         run: pipenv install --dev --python=${{ matrix.python-version }}
@@ -154,7 +154,7 @@ jobs:
 
 
       - name: Install pipenv
       - name: Install pipenv
         if: steps.changes.outputs.core == 'true'
         if: steps.changes.outputs.core == 'true'
-        run: pip install pipenv --upgrade
+        run: pip install "pipenv<2025.0.0"
 
 
       - name: Install Dependencies
       - name: Install Dependencies
         if: steps.changes.outputs.core == 'true'
         if: steps.changes.outputs.core == 'true'
@@ -197,7 +197,7 @@ jobs:
 
 
       - name: Install pipenv
       - name: Install pipenv
         if: steps.changes.outputs.core == 'true'
         if: steps.changes.outputs.core == 'true'
-        run: pip install pipenv --upgrade
+        run: pip install "pipenv<2025.0.0"
 
 
       - name: Install Dependencies
       - name: Install Dependencies
         if: steps.changes.outputs.core == 'true'
         if: steps.changes.outputs.core == 'true'