浏览代码

fix: limit pipenv version to <2025.0.0

Đỗ Trường Giang 1 周之前
父节点
当前提交
7c600bb876

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

@@ -27,7 +27,7 @@ runs:
         python-version: ${{ inputs.python-version }}
         python-version: ${{ inputs.python-version }}
 
 
     - name: Install pipenv
     - name: Install pipenv
-      run: pip install pipenv --upgrade
+      run: pip install "pipenv<2025.0.0"
       shell: bash
       shell: bash
 
 
     - name: Install minimum supported dependencies
     - name: Install minimum supported dependencies

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

@@ -115,7 +115,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'
         if: github.event.inputs.target_package == 'gui'

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

@@ -116,7 +116,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: matrix.package == 'gui'
         if: matrix.package == 'gui'

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

@@ -60,7 +60,7 @@ jobs:
         run: pip install --upgrade setuptools wheel
         run: pip install --upgrade setuptools wheel
 
 
       - name: Install pipenv
       - name: Install pipenv
-        run: pip install --upgrade pipenv
+        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 }}
@@ -139,7 +139,7 @@ jobs:
 
 
       - name: Install pipenv
       - name: Install pipenv
         if: steps.changes.outputs.core == 'true'
         if: steps.changes.outputs.core == 'true'
-        run: pip install --upgrade pipenv
+        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'
@@ -178,7 +178,7 @@ jobs:
 
 
       - name: Install pipenv
       - name: Install pipenv
         if: steps.changes.outputs.core == 'true'
         if: steps.changes.outputs.core == 'true'
-        run: pip install --upgrade pipenv
+        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'