Skip to content

Commit ef570ea

Browse files
authored
Merge pull request #791 from pyiron/dependabot/pip/pandas-3.0.0
Bump pandas from 2.3.3 to 3.0.0
2 parents 1a494e2 + 220c33d commit ef570ea

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
- graphviz =9.0.0
99
- hatchling =1.28.0
1010
- hatch-vcs =0.5.0
11-
- pandas =2.3.3
11+
- pandas =3.0.0
1212
- pint =0.25
1313
- pyiron_snippets =1.0.2
1414
- python >=3.11,<3.14
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
channels:
22
- conda-forge
33
dependencies:
4-
- pysqa =0.3.2
4+
- pysqa =0.3.4
55
- h5py =3.14.0

.ci_support/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
- graphviz =9.0.0
99
- hatchling =1.28.0
1010
- hatch-vcs =0.5.0
11-
- pandas =2.3.3
11+
- pandas =3.0.0
1212
- pint =0.25
1313
- pyiron_snippets =1.0.2
1414
- python >=3.11,<3.14

docs/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- graphviz =9.0.0
1515
- hatchling =1.28.0
1616
- hatch-vcs =0.5.0
17-
- pandas =2.3.3
17+
- pandas =3.0.0
1818
- pint =0.25
1919
- pyiron_snippets =1.0.2
2020
- python >=3.11,<3.14

pyiron_workflow/nodes/for_loop.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -601,8 +601,8 @@ def for_node(
601601
... )
602602
>>>
603603
>>> out = for_instance()
604-
>>> type(out.df)
605-
<class 'pandas.core.frame.DataFrame'>
604+
>>> type(out.df) # doctest: +ELLIPSIS
605+
<class 'pandas...DataFrame'>
606606
607607
Internally, the loop node has made a bunch of body nodes, as well as nodes to
608608
index and collect data
@@ -645,8 +645,8 @@ def for_node(
645645
... )
646646
>>>
647647
>>> out = for_instance()
648-
>>> out.df.columns
649-
Index(['a', 'b', 'c', 'd', 'out_a', 'out_b', 'out_c', 'out_d', 'e'], dtype='object')
648+
>>> out.df.columns # doctest: +ELLIPSIS
649+
Index(['a', 'b', 'c', 'd', 'out_a', 'out_b', 'out_c', 'out_d', 'e'], dtype='...')
650650
651651
"""
652652
iter_on = (iter_on,) if isinstance(iter_on, str) else iter_on

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"cloudpickle==3.1.2",
4040
"executorlib==1.8.0",
4141
"graphviz==0.21",
42-
"pandas==2.3.3",
42+
"pandas==3.0.0",
4343
"pint==0.25",
4444
"pyiron_snippets==1.0.2",
4545
"rdflib==7.1.4",

0 commit comments

Comments
 (0)