From 6a55d4fcb3e79326c2bf0cb8abeb789e9bd7a2bb Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Wed, 4 Jun 2025 13:01:16 +0400 Subject: [PATCH 1/4] Upgrade Python version for development environment --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 6300e32b5a1b5..24b8ccb6e8c2b 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,7 @@ name: pandas-dev channels: - conda-forge dependencies: - - python=3.10 + - python=3.13 - pip # build dependencies From 8995b96b4485631da51512eedc1f0f0038b06624 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Thu, 5 Jun 2025 00:10:42 +0400 Subject: [PATCH 2/4] Unpinning Python --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 9107808cdad60..cdbe044a7cd27 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,7 @@ name: pandas-dev channels: - conda-forge dependencies: - - python=3.13 + - python - pip # build dependencies From a476a87db871ef6a644365ef3376cba14f1c7ddc Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Thu, 5 Jun 2025 00:19:14 +0400 Subject: [PATCH 3/4] Fix typo in docstring making docutils complain in Python 3.13 --- pandas/io/formats/format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/formats/format.py b/pandas/io/formats/format.py index dbfac3b02643f..097e508d4889a 100644 --- a/pandas/io/formats/format.py +++ b/pandas/io/formats/format.py @@ -114,7 +114,7 @@ columns : array-like, optional, default None The subset of columns to write. Writes all columns by default. col_space : %(col_space_type)s, optional - %(col_space)s. + %(col_space)s header : %(header_type)s, optional %(header)s. index : bool, optional, default True From 9979dd8a31a7c548f70ea9c664b45c73a73a8d77 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Fri, 6 Jun 2025 16:03:51 +0400 Subject: [PATCH 4/4] Update environment.yml --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index cdbe044a7cd27..8926c85143e2b 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,7 @@ name: pandas-dev channels: - conda-forge dependencies: - - python + - python=3.10 - pip # build dependencies