🌐 AI搜索 & 代理 主页
Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
54d089b
Use the BinaryFormatter only on .NET FW and Mono
filmor Oct 1, 2024
d2414ca
Use uv
filmor Nov 25, 2024
95e89de
Rely on setup-uv for the env installation
filmor Apr 14, 2025
9233873
Bump uv action
filmor Apr 14, 2025
6c956e8
venv should be active, use installed exec
filmor Apr 14, 2025
f470add
Use uv run
filmor Apr 26, 2025
bef4e0c
Activate environment in CI
filmor Apr 27, 2025
ba2002b
Next permutation :)
filmor Apr 27, 2025
a03ca40
Next permutation :)
filmor Apr 27, 2025
0ced4e6
Use uv run for tests that might need PYTHONHOME
filmor Apr 27, 2025
abbf0d7
Initial 3.14 commit
filmor Aug 9, 2025
b7d0e53
Use .NET 8.0 in CI
filmor Aug 10, 2025
38c87d9
Merge branch 'fix-binaryformatter-usage' into net8.0
filmor Aug 11, 2025
74ff35f
Update compilers toolset dependency
filmor Sep 29, 2025
1156f38
Disable non-copyable analyzer for now
filmor Sep 29, 2025
52e2ceb
Fix pyproject.toml license spec
filmor Sep 29, 2025
d051481
Drop perf tests
filmor Oct 11, 2025
9a30911
Update actions and also install .NET9
filmor Oct 11, 2025
6b99b22
Bump minimal Python version and drop license-files entry
filmor Oct 11, 2025
f23e54c
Merge uv changes
filmor Oct 11, 2025
e5feb0b
Update lock
filmor Oct 11, 2025
3118ebb
Use the fact that the venv should be active
filmor Oct 11, 2025
39fa1c5
Explicitly sync
filmor Oct 11, 2025
a5b67c6
Skip embedding tests for now
filmor Oct 11, 2025
08b7bcd
Merge branch 'python3.14' into net8.0
filmor Oct 11, 2025
9cdf2ae
Update lock
filmor Oct 11, 2025
4d50553
Try setting PYTHONHOME
filmor Oct 11, 2025
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
Prev Previous commit
Next Next commit
Use the fact that the venv should be active
  • Loading branch information
filmor committed Oct 11, 2025
commit 3118ebba5066a7bd1ed6ca936f37cda74843ec8d
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ jobs:
- name: Set Python DLL path and PYTHONHOME (non Windows)
if: ${{ matrix.os.category != 'windows' }}
run: |
echo PYTHONNET_PYDLL=$(uv run find_libpython) >> $GITHUB_ENV
echo PYTHONNET_PYDLL=$(find_libpython) >> $GITHUB_ENV

- name: Set Python DLL path and PYTHONHOME (Windows)
if: ${{ matrix.os.category == 'windows' }}
run: |
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(uv run find_libpython)"
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(find_libpython)"

- name: Embedding tests
run: dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
Expand All @@ -96,4 +96,4 @@ jobs:
run: pytest --runtime netfx

- name: Python tests run from .NET
run: uv run dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
run: dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
Loading