Skip to content

Commit bd7e0a1

Browse files
FredLL-AvaigaFred Lefévère-Laoide
andauthored
Tooltip need to have one "real" children (#2798)
* Tooltip need to have one "real" children Related to #2791 * dependency * dependency * macos-13 deprecated by GitHub Actions, update to macos-14 (#2789) * macos-13 deprecated by GitHub Actions, update to macos-14 * switching to macos-latest * trying with macos-15 as macos-latest is failing many (10) tests * back to macos 14 * min version * min version --------- Co-authored-by: Fred Lefévère-Laoide <Fred.Lefevere-Laoide@Taipy.io> (cherry picked from commit 52f53c4) * version 4.1.1 --------- Co-authored-by: Fred Lefévère-Laoide <Fred.Lefevere-Laoide@Taipy.io>
1 parent 9ddbd86 commit bd7e0a1

File tree

19 files changed

+191
-137
lines changed

19 files changed

+191
-137
lines changed

.github/actions/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ runs:
4545
shell: bash
4646

4747
- name: Setup LibMagic (MacOS)
48-
if: inputs.os == 'macos-13' && inputs.install-gui
48+
if: inputs.os == 'macos-14' && inputs.install-gui
4949
run: brew install libmagic
5050
shell: bash
5151

.github/workflows/frontend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
timeout-minutes: 20
2424
strategy:
2525
matrix:
26-
node-version: [20.x]
27-
os: [ubuntu-latest, windows-latest, macos-13]
26+
node-version: [22.x]
27+
os: [ubuntu-latest, windows-latest, macos-14]
2828
runs-on: ${{ matrix.os }}
2929

3030
defaults:

.github/workflows/overall-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
python-version: ['3.9', '3.10', '3.11', '3.12']
56-
os: [ubuntu-latest, windows-latest, macos-13]
56+
os: [ubuntu-latest, windows-latest, macos-14]
5757
pipfile-version: ['min', 'max']
5858
runs-on: ${{ matrix.os }}
5959
steps:
@@ -81,7 +81,7 @@ jobs:
8181
fail-fast: false
8282
matrix:
8383
python-version: ['3.9', '3.10', '3.11', '3.12']
84-
os: [ubuntu-latest, windows-latest, macos-13]
84+
os: [ubuntu-latest, windows-latest, macos-14]
8585
orchestrator: ['orchestrator_dispatcher', 'standalone']
8686
pipfile-version: ['min', 'max']
8787
runs-on: ${{ matrix.os }}

.github/workflows/packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
python-versions: ['3.9', '3.10', '3.11', '3.12']
24-
os: [ubuntu-latest, macos-13, windows-latest]
24+
os: [ubuntu-latest, macos-14, windows-latest]
2525

2626
runs-on: ${{ matrix.os }}
2727

.github/workflows/partial-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
python-version: ['3.9', '3.10', '3.11', '3.12']
27-
os: [ubuntu-latest, windows-latest, macos-13]
27+
os: [ubuntu-latest, windows-latest, macos-14]
2828
runs-on: ${{ matrix.os }}
2929
steps:
3030
- uses: actions/checkout@v4
@@ -62,7 +62,7 @@ jobs:
6262
run: pipenv install --dev --python=${{ matrix.python-version }}
6363

6464
- name: Setup LibMagic (MacOS)
65-
if: matrix.os == 'macos-13'
65+
if: matrix.os == 'macos-14'
6666
run: brew install libmagic
6767

6868
- name: Setup Node
@@ -132,7 +132,7 @@ jobs:
132132
fail-fast: false
133133
matrix:
134134
python-version: ['3.9', '3.10', '3.11', '3.12']
135-
os: [ubuntu-latest, windows-latest, macos-13]
135+
os: [ubuntu-latest, windows-latest, macos-14]
136136
runs-on: ${{ matrix.os }}
137137
steps:
138138
- uses: actions/checkout@v4
@@ -161,7 +161,7 @@ jobs:
161161
run: pipenv install --dev --python=${{ matrix.python-version }}
162162

163163
- name: Setup LibMagic (MacOS)
164-
if: matrix.os == 'macos-13' && steps.changes.outputs.core == 'true'
164+
if: matrix.os == 'macos-14' && steps.changes.outputs.core == 'true'
165165
run: brew install libmagic
166166

167167
- name: Pytest Core orchestrator_dispatcher
@@ -175,7 +175,7 @@ jobs:
175175
fail-fast: false
176176
matrix:
177177
python-version: ['3.9', '3.10', '3.11', '3.12']
178-
os: [ubuntu-latest, windows-latest, macos-13]
178+
os: [ubuntu-latest, windows-latest, macos-14]
179179
runs-on: ${{ matrix.os }}
180180
steps:
181181
- uses: actions/checkout@v4
@@ -204,7 +204,7 @@ jobs:
204204
run: pipenv install --dev --python=${{ matrix.python-version }}
205205

206206
- name: Setup LibMagic (MacOS)
207-
if: matrix.os == 'macos-13' && steps.changes.outputs.core == 'true'
207+
if: matrix.os == 'macos-14' && steps.changes.outputs.core == 'true'
208208
run: brew install libmagic
209209

210210
- name: Pytest Core standalone

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
strategy:
121121
matrix:
122122
python-versions: ['3.9','3.10', '3.11', '3.12']
123-
os: [ubuntu-latest,windows-latest,macos-13]
123+
os: [ubuntu-latest,windows-latest,macos-14]
124124
runs-on: ${{ matrix.os }}
125125
steps:
126126
- uses: actions/checkout@v4

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "pypi"
55

66
[packages]
77
apispec = {extras = ["yaml"], version = "==6.3"}
8-
apispec-webframeworks = "==0.5.2"
8+
apispec-webframeworks = "==1.0.0"
99
cookiecutter = "==2.1.1"
1010
deepdiff = "==6.7.1"
1111
flask = "==3.1.0"

frontend/taipy-gui/base/src/packaging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "taipy-gui-base",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"private": true,
55
"main": "./taipy-gui-base.js",
66
"types": "./taipy-gui-base.d.ts"

frontend/taipy-gui/dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "taipy-gui-dom",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"private": true,
55
"dependencies": {
66
"react": "^18.2.0",

frontend/taipy-gui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "taipy-gui",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"private": true,
55
"dependencies": {
66
"@emotion/react": "^11.10.0",

0 commit comments

Comments
 (0)