浏览代码

chore: limit number of jobs

Joao Andre 1 年之前
父节点
当前提交
fa0130fcc8
共有 5 个文件被更改,包括 8 次插入8 次删除
  1. 3 3
      .github/workflows/overall-tests.yml
  2. 2 2
      .github/workflows/partial-tests.yml
  3. 1 1
      Pipfile
  4. 1 1
      taipy/core/Pipfile
  5. 1 1
      taipy/gui/Pipfile

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

@@ -30,7 +30,7 @@ jobs:
         run: pip install --upgrade pipenv
         run: pip install --upgrade pipenv
 
 
       - name: Install Setuptools and wheel
       - name: Install Setuptools and wheel
-        run: pip install --upgrade setuptools wheel
+        run: pipenv run pip install --upgrade setuptools wheel
 
 
       - name: Install Dependencies
       - name: Install Dependencies
         run: pipenv install --dev --python=${{ matrix.python-version }}
         run: pipenv install --dev --python=${{ matrix.python-version }}
@@ -60,7 +60,7 @@ jobs:
 
 
   submit_tests:
   submit_tests:
     needs: [partial-tests]
     needs: [partial-tests]
-    timeout-minutes: 20
+    timeout-minutes: 40
     strategy:
     strategy:
       fail-fast: false
       fail-fast: false
       matrix:
       matrix:
@@ -88,7 +88,7 @@ jobs:
 
 
   standalone_tests:
   standalone_tests:
     needs: [partial-tests]
     needs: [partial-tests]
-    timeout-minutes: 20
+    timeout-minutes: 40
     strategy:
     strategy:
       fail-fast: false
       fail-fast: false
       matrix:
       matrix:

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

@@ -113,7 +113,7 @@ jobs:
 
 
   submit_tests:
   submit_tests:
     needs: linter
     needs: linter
-    timeout-minutes: 20
+    timeout-minutes: 40
     strategy:
     strategy:
       fail-fast: false
       fail-fast: false
       matrix:
       matrix:
@@ -152,7 +152,7 @@ jobs:
 
 
   standalone_tests:
   standalone_tests:
     needs: linter
     needs: linter
-    timeout-minutes: 20
+    timeout-minutes: 40
     strategy:
     strategy:
       fail-fast: false
       fail-fast: false
       matrix:
       matrix:

+ 1 - 1
Pipfile

@@ -21,7 +21,7 @@ markdown = "==3.4.4"
 marshmallow = "==3.20.1"
 marshmallow = "==3.20.1"
 networkx = "==2.6"
 networkx = "==2.6"
 openpyxl = "==3.1.2"
 openpyxl = "==3.1.2"
-pandas = "2.0.2"
+pandas = ">=2.0.2,<2.3.0"
 pyarrow = "==14.0.2"
 pyarrow = "==14.0.2"
 pymongo = {extras = ["srv"], version = "==4.2.0"}
 pymongo = {extras = ["srv"], version = "==4.2.0"}
 python-dotenv = "==1.0.0"
 python-dotenv = "==1.0.0"

+ 1 - 1
taipy/core/Pipfile

@@ -4,7 +4,7 @@ verify_ssl = true
 name = "pypi"
 name = "pypi"
 
 
 [packages]
 [packages]
-pandas = "==2.0.2"
+pandas = ">=2.0.2,<2.3.0"
 networkx = "==2.6"
 networkx = "==2.6"
 openpyxl = "==3.1.2"
 openpyxl = "==3.1.2"
 pyarrow = "==14.0.2"
 pyarrow = "==14.0.2"

+ 1 - 1
taipy/gui/Pipfile

@@ -12,7 +12,7 @@ gevent = "==23.7.0"
 gevent-websocket = "==0.10.1"
 gevent-websocket = "==0.10.1"
 kthread = "==0.2.3"
 kthread = "==0.2.3"
 markdown = "==3.4.4"
 markdown = "==3.4.4"
-pandas = "==2.0.2"
+pandas = ">=2.0.2,<2.3.0"
 pyarrow = "==14.0.2"
 pyarrow = "==14.0.2"
 pyngrok = "==5.1"
 pyngrok = "==5.1"
 python-dotenv = "==1.0.0"
 python-dotenv = "==1.0.0"