File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
ci/docker/connector_test_lambda Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ FROM public.ecr.aws/lambda/python:3.13-x86_64
22
33WORKDIR /home/user/snowflake-connector-python
44
5-
6- # Our dependencies rely on the Rust toolchain being available in the build-time environment (https://github.com/pyca/cryptography/issues/5771)
7-
85# Install necessary packages and compilers - we need to build numpy for newer version
96# Update dnf and install development tools
107RUN dnf -y update && \
@@ -16,7 +13,8 @@ RUN dnf -y update && \
1613 openblas-devel \
1714 lapack-devel && \
1815 dnf clean all
19- # Our dependencies rely on the Rust toolchain being available in the build-time environment
16+
17+ # Our dependencies rely on the Rust toolchain being available in the build-time environment (https://github.com/pyca/cryptography/issues/5771)
2018RUN dnf -y install rust cargo
2119RUN dnf -y upgrade
2220
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ def parse_config_file(self):
2626 self .level = log .get ("level" , "INFO" )
2727 self .path = log .get ("path" , os .path .join (DIRS .user_config_path , "logs" ))
2828
29- # TODO: wont work in 3.13?
30- # if not self.path.scheme and self.path.netloc and self.path.path.startswith("/"):
3129 if not os .path .isabs (self .path ):
3230 raise FileNotFoundError (
3331 f"Log path must be an absolute file path: { self .path } "
You can’t perform that action at this time.
0 commit comments