Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace macos-12 with macos-13 #1151

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-12]
os: [ubuntu-latest, windows-latest, macos-13]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
architecture: [x64]
include:
Expand All @@ -31,13 +31,13 @@ jobs:
python-version: '3.10'
- os: windows-latest
python-version: '3.12'
- os: macOS-12
- os: macOS-13
python-version: '3.8'
- os: macOS-12
- os: macOS-13
python-version: '3.9'
- os: macOS-12
- os: macOS-13
python-version: '3.10'
- os: macOS-12
- os: macOS-13
python-version: '3.12'
fail-fast: false

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The official URH docker image is available [here](https://hub.docker.com/r/jopoh
### macOS
#### Using DMG

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

#### With brew
URH is available as a [homebrew formula](https://formulae.brew.sh/formula/urh) so you can install it with
Expand Down
2 changes: 1 addition & 1 deletion src/urh/awre/FormatFinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def __handle_container_overlapping_conflict(container: CommonRangeContainer):
possible_solutions.append(solution)

# Take solution that maximizes score. In case of tie, choose solution with shorter total length.
# if there is still a tie prefer solution that contains a length field as is is very likely to be correct
# if there is still a tie prefer solution that contains a length field as it is very likely to be correct
# if nothing else helps break tie by names of field types to prevent randomness
best_solution = max(
possible_solutions,
Expand Down
2 changes: 1 addition & 1 deletion src/urh/dev/native/lib/limesdr.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ cpdef int set_antenna(size_t index):

cpdef int get_antenna():
"""
Obtain currently selected antenna of the the specified RX or TX channel.
Obtain currently selected antenna of the specified RX or TX channel.

:return: Index of selected antenna on success, (-1) on failure
"""
Expand Down
Loading