File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ dependencies = [
1717 " ducktools-classbuilder>=0.7.1" ,
1818 " ducktools-lazyimporter>=0.7.0" ,
1919 " ducktools-scriptmetadata" ,
20- " ducktools-pythonfinder>=0.6.0 " ,
20+ " ducktools-pythonfinder>=0.8.1 " ,
2121 " tomli; python_version < '3.11'" ,
2222 " packaging>=23.2" ,
2323]
Original file line number Diff line number Diff line change 1919import tempfile
2020
2121from ducktools .pythonfinder import get_python_installs
22- from ducktools .pythonfinder .shared import get_install_details
22+ from ducktools .pythonfinder .shared import DetailFinder
2323
2424from ducktools .env .catalogue import TemporaryCatalogue
2525from ducktools .env .config import Config
@@ -38,7 +38,8 @@ def available_pythons():
3838@pytest .fixture (scope = "session" )
3939def this_python ():
4040 py = sys .executable
41- details = get_install_details (py )
41+ finder = DetailFinder ()
42+ details = finder .get_install_details (py )
4243 # Pretend PyPy is CPython for tests
4344 if details .implementation == "pypy" :
4445 details .implementation = "cpython"
You can’t perform that action at this time.
0 commit comments