mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-30 08:23:53 +00:00
Make lib iteration platform-specific (#5406)
This commit is contained in:
parent
6587fb844a
commit
979049b2a6
3 changed files with 21 additions and 8 deletions
|
@ -11,11 +11,11 @@ ImportResult {
|
|||
is_stub_package: false,
|
||||
import_type: ThirdParty,
|
||||
resolved_paths: [
|
||||
"./resources/test/airflow/venv/Lib/python3.11/site-packages/sqlalchemy/__init__.py",
|
||||
"./resources/test/airflow/venv/Lib/python3.11/site-packages/sqlalchemy/orm/__init__.py",
|
||||
"./resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/__init__.py",
|
||||
"./resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/orm/__init__.py",
|
||||
],
|
||||
search_path: Some(
|
||||
"./resources/test/airflow/venv/Lib/python3.11/site-packages",
|
||||
"./resources/test/airflow/venv/lib/python3.11/site-packages",
|
||||
),
|
||||
is_stub_file: false,
|
||||
is_native_lib: false,
|
||||
|
@ -27,21 +27,21 @@ ImportResult {
|
|||
is_stub_file: false,
|
||||
is_native_lib: false,
|
||||
name: "base",
|
||||
path: "./resources/test/airflow/venv/Lib/python3.11/site-packages/sqlalchemy/orm/base.py",
|
||||
path: "./resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/orm/base.py",
|
||||
py_typed: None,
|
||||
},
|
||||
"dependency": ImplicitImport {
|
||||
is_stub_file: false,
|
||||
is_native_lib: false,
|
||||
name: "dependency",
|
||||
path: "./resources/test/airflow/venv/Lib/python3.11/site-packages/sqlalchemy/orm/dependency.py",
|
||||
path: "./resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/orm/dependency.py",
|
||||
py_typed: None,
|
||||
},
|
||||
"query": ImplicitImport {
|
||||
is_stub_file: false,
|
||||
is_native_lib: false,
|
||||
name: "query",
|
||||
path: "./resources/test/airflow/venv/Lib/python3.11/site-packages/sqlalchemy/orm/query.py",
|
||||
path: "./resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/orm/query.py",
|
||||
py_typed: None,
|
||||
},
|
||||
},
|
||||
|
@ -49,6 +49,6 @@ ImportResult {
|
|||
non_stub_import_result: None,
|
||||
py_typed_info: None,
|
||||
package_directory: Some(
|
||||
"./resources/test/airflow/venv/Lib/python3.11/site-packages/sqlalchemy",
|
||||
"./resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy",
|
||||
),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue