Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.13'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: |
./bin/Debug/tap python set-path $Python3_ROOT_DIR
./bin/Debug/tap python set-lib-path $Python3_ROOT_DIR/lib/libpython3.10.dylib
./bin/Debug/tap python set-lib-path $Python3_ROOT_DIR/lib/libpython3.13.dylib
./bin/Debug/tap python test
- name: Test Plan
run: |
Expand Down
2 changes: 1 addition & 1 deletion Documentation/TAP_Python_Help/Prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Python Plugin is available at [the OpenTAP website](https://packages.opentap
- Commercial development tools can be downloaded from [Keysight](http://www.keysight.com/find/tap).

- **Python**
Python 3.7 or later. Download from [python.org](http://www.python.org).
Python 3.7 to 3.13. Download from [python.org](http://www.python.org).

- **Supported Operating Systems**: Windows 7 or newer, Ubuntu 20.04 or equivalent or newer, MacOS 10

Expand Down
2 changes: 1 addition & 1 deletion OpenTap.Python/PythonInstallationDiscoverer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ IEnumerable<string> GetAvailablePythonVersionsCandidates()
}

const int minSupportedMinorVersion = 7;
const int maxSupportedMinorVersion = 12;
const int maxSupportedMinorVersion = 13;
const int supportedMajorVersion = 3;

public IEnumerable<(string library, string pyPath)> GetAvailablePythonInstallations()
Expand Down
Loading