Related to the issues I had yesterday, has anyone ...
# general
r
Related to the issues I had yesterday, has anyone seen these resolve errors before?
Copy code
09:30:50.92 [ERROR] 1 Exception encountered:

Engine traceback:
  in `lint` goal

ResolveError: The file or directory 'e' does not exist on disk in the workspace, so the address 'e' from the `dependencies` field from the target 3rdparty/python:globals#gql cannot be resolved.
Here's what my BUILD file looks like:
Copy code
python_requirements(
    source="requirements/globals.txt",
    name="globals",
    overrides={"gql": {"dependencies": "requests-toolbelt"}}
)
And here's my requirements file:
Copy code
dagster>=1.1.15
dagster-pandas>=0.17.15
dagster-pyspark>=0.17.15
dagster-aws>=0.17.15
dagster-azure>=0.17.15
dagster-pagerduty>=0.17.15
dagster-graphql>=1.1.15
dagster-datadog>=0.17.15
dagster-shell>=0.17.15

azure-storage-blob~=12.15.0
azure-identity~=1.7.1
azure-keyvault-secrets~=4.3.0
azure-cosmos~=4.2.0
boto3~=1.24.1
cached-property~=1.5.2  # TODO: remove
cachetools~=5.0.0
DBUtils~=2.0.2
gql~=3.4.0
meltano==2.16.0
orjson~=3.6.4
pandas==1.5.3
paramiko==2.12.0
protobuf~=3.20.0
psycopg2-binary~=2.9.5
python-dotenv==0.20.0
pydantic>=1.8.0,< 2.0.0
pytz~=2021.3
pyyaml ~= 6.0
ratelimit ~= 2.2.1
requests~=2.28.1
singledispatchmethod~=1.0  # TODO: remove
snowflake-connector-python[secure-local-storage,pandas]~=2.9.0
slack_sdk~=3.11.2
deprecation~=2.1.0
tenacity~=8.0.1
toolz~=0.11.1
pyarrowfs-adlgen2~=0.2.3
datadog-api-client~=2.7.0
e
Dependencies should be a list. Unfortunately strings are lists of (single character) strings in Python.
🙏 1
b
doh
b
It’s an easy mistake to make. https://github.com/pantsbuild/pants/issues/18348 is related