Skip to content

Commit 611795d

Browse files
authored
fix(build,package): Pandas version (#20822)
fix(build,package): Pandas version
1 parent d3bd462 commit 611795d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

analyses-snapshot-testing/citools/Dockerfile.analyze

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN git clone --branch $ANALYSIS_REF --depth 1 https://github.com/Opentrons/open
1616
RUN python -m pip install -U ./shared-data
1717
RUN python -m pip install -U ./hardware[flex]
1818
RUN python -m pip install -U ./api
19-
RUN python -m pip install -U pandas==1.4.3
19+
RUN python -m pip install -U pandas==2.3.3
2020

2121
# The default command to run when starting the container
2222
CMD ["tail", "-f", "/dev/null"]

analyses-snapshot-testing/citools/Dockerfile.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY . /opentrons
1313
RUN python -m pip install -U ./shared-data
1414
RUN python -m pip install -U ./hardware[flex]
1515
RUN python -m pip install -U ./api
16-
RUN python -m pip install -U pandas==1.4.3
16+
RUN python -m pip install -U pandas==2.3.3
1717

1818
# The default command to keep the container running
1919
CMD ["tail", "-f", "/dev/null"]

app-shell/scripts/python-install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ function pythonInstallOne(platformName, archStr, targetDir) {
254254
path.join(__dirname, '..', '..', 'shared-data'),
255255
path.join(__dirname, '..', '..', 'hardware[flex]'),
256256
path.join(__dirname, '..', '..', 'api'),
257-
'pandas==1.4.3',
257+
'pandas==2.3.3',
258258
])
259259
})
260260
.then(({ stdout }) => {

0 commit comments

Comments
 (0)