Skip to content

Commit 22dbc7f

Browse files
authored
Replace macos-12 with macos-13 (#1151)
* Replace macos-12 with macos-13
1 parent 6abdd54 commit 22dbc7f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-latest, windows-latest, macos-12]
18+
os: [ubuntu-latest, windows-latest, macos-13]
1919
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2020
architecture: [x64]
2121
include:
@@ -31,13 +31,13 @@ jobs:
3131
python-version: '3.10'
3232
- os: windows-latest
3333
python-version: '3.12'
34-
- os: macOS-12
34+
- os: macOS-13
3535
python-version: '3.8'
36-
- os: macOS-12
36+
- os: macOS-13
3737
python-version: '3.9'
38-
- os: macOS-12
38+
- os: macOS-13
3939
python-version: '3.10'
40-
- os: macOS-12
40+
- os: macOS-13
4141
python-version: '3.12'
4242
fail-fast: false
4343

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The official URH docker image is available [here](https://hub.docker.com/r/jopoh
7373
### macOS
7474
#### Using DMG
7575

76-
It is recommended to use __at least macOS 12__ when using the DMG available [here](https://github.com/jopohl/urh/releases).
76+
It is recommended to use __at least macOS 13__ when using the DMG available [here](https://github.com/jopohl/urh/releases).
7777

7878
#### With brew
7979
URH is available as a [homebrew formula](https://formulae.brew.sh/formula/urh) so you can install it with

src/urh/awre/FormatFinder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ def __handle_container_overlapping_conflict(container: CommonRangeContainer):
486486
possible_solutions.append(solution)
487487

488488
# Take solution that maximizes score. In case of tie, choose solution with shorter total length.
489-
# if there is still a tie prefer solution that contains a length field as is is very likely to be correct
489+
# if there is still a tie prefer solution that contains a length field as it is very likely to be correct
490490
# if nothing else helps break tie by names of field types to prevent randomness
491491
best_solution = max(
492492
possible_solutions,

src/urh/dev/native/lib/limesdr.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ cpdef int set_antenna(size_t index):
290290

291291
cpdef int get_antenna():
292292
"""
293-
Obtain currently selected antenna of the the specified RX or TX channel.
293+
Obtain currently selected antenna of the specified RX or TX channel.
294294
295295
:return: Index of selected antenna on success, (-1) on failure
296296
"""

0 commit comments

Comments
 (0)