Skip to content

Commit bda0c59

Browse files
authored
Apply suggestions from code review
1 parent d30933b commit bda0c59

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.ci/validation_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
class ValidationMatrix:
7-
os = ("ubuntu-22.04", "ubuntu-22.04", "windows-2019", "macos-13")
7+
os = ("ubuntu-22.04", "windows-2019", "macos-13")
88
python = ("3.9", "3.10", "3.11", "3.12")
99
device = ("cpu", "gpu")
1010

.github/workflows/install_requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [ubuntu-22.04, ubuntu-22.04, windows-2019, windows-2022, macos-13]
22+
os: [ubuntu-22.04, windows-2019, windows-2022, macos-13]
2323
python: ['3.9', '3.10', '3.11', '3.12']
2424
steps:
2525
- name: Checkout repository

.github/workflows/treon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
runs_on: [ubuntu-22.04, ubuntu-22.04, windows-2019, macos-13]
27+
runs_on: [ubuntu-22.04, windows-2019, macos-13]
2828
python: ['3.9', '3.10', '3.11', '3.12']
2929
uses: ./.github/workflows/build_treon_reusable.yml
3030
with:

selector/src/shared/notebook-status.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type ValidatedOS = 'ubuntu-22.04' | 'ubuntu-22.04' | 'windows-2019' | 'macos-13';
1+
type ValidatedOS = 'ubuntu-22.04' | 'windows-2019' | 'macos-13';
22

33
type ValidatedDevice = 'cpu' | 'gpu';
44

0 commit comments

Comments
 (0)