-
Notifications
You must be signed in to change notification settings - Fork 528
Closed
Labels
bugstatus-triage_doneInitial triage done, will be further handled by the driver teamInitial triage done, will be further handled by the driver team
Description
Python version
3.13
Operating system and processor architecture
Windows X86-64
Installed packages
N/AWhat did you do?
In a corporate environment, folks without C++ build tools are trying to install the connector for CPython 3.13 and Windows, but are getting C++ build tools errors.
Looking at the files available on py-pi (https://pypi.org/project/snowflake-connector-python/#files), it looks like there is no pre-built distribution for Python 3.13 and Windows.What did you expect to see?
Once that is included, folks in this corporate environment will be able to continue and install the connector successfully.
Can you set logging to DEBUG and collect the logs?
import logging
import os
for logger_name in ('snowflake.connector',):
logger = logging.getLogger(logger_name)
logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
ch.setFormatter(logging.Formatter('%(asctime)s - %(threadName)s %(filename)s:%(lineno)d - %(funcName)s() - %(levelname)s - %(message)s'))
logger.addHandler(ch)Metadata
Metadata
Assignees
Labels
bugstatus-triage_doneInitial triage done, will be further handled by the driver teamInitial triage done, will be further handled by the driver team