Skip to content

SNOW-2071173: Missing Pre-Built Distros for CPython 3.13 and Windows x86-64 #2308

@je-clark

Description

@je-clark

Python version

3.13

Operating system and processor architecture

Windows X86-64

Installed packages

N/A

What 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

Labels

bugstatus-triage_doneInitial triage done, will be further handled by the driver team

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions