2023년 12월 13일부터 boto3는 파이썬 3.7 버전을 지원하지 않습니다. 지원을 하지 않는다는 의미가 아예 못 쓴다는 의미가 아니라, 아래 메시지에서도 확인할 수 있듯이 서비스 업데이트, 버그 픽스, 보안 업데이트 등의 지원을 못 받는다는 의미입니다.
PythonDeprecationWarning: Boto3 will no longer support Python 3.7 starting December 13, 2023. To continue receiving service updates, bug fixes, and security updates please upgrade to Python 3.8 or later. More information can be found here: https://aws.amazon.com/blogs/developer/python-support-policy-updates-for-aws-sdks-and-tools/
참고로 boto3는 파이썬 3.8 버전은 2025년 4월까지 지원합니다.
참고자료
[1] https://aws.amazon.com/ko/blogs/developer/python-support-policy-updates-for-aws-sdks-and-tools/
'Dev > python' 카테고리의 다른 글
[pandas] 데이터프레임 짝수행, 홀수행 선택하기 (0) | 2023.10.07 |
---|---|
[sqlalchemy] 여러 컬럼 기준으로 정렬하기, order_by() 메서드 (0) | 2023.10.07 |
[python] print 함수 대신 pprint 함수로 데이터 예쁘게 확인하기 (0) | 2023.10.06 |
[pandas] 데이터프레임 특정 조건 행 삭제, drop() 메서드 활용 (0) | 2023.10.06 |
[python] 한줄로 if, else문 만들기 (삼항연산자) (0) | 2023.09.28 |
[python] 타입 체크시에는 type() 대신에 isinstance()를 활용하라 (0) | 2023.09.27 |
[python] redis.Redis()와 redis.StrictRedis()의 차이는? (0) | 2023.09.26 |
[pandas] 데이터프레임에서 NaN을 None으로 치환하기, replace(), np.nan 활용 (0) | 2023.09.24 |