Skip to content

Commit

Permalink
Merge pull request #9014 from gem/pandas2
Browse files Browse the repository at this point in the history
Upgrade Pandas to v2.0.3
  • Loading branch information
ptormene authored Sep 19, 2023
2 parents 659fe11 + 9b23281 commit 0ceae6a
Show file tree
Hide file tree
Showing 18 changed files with 33 additions and 23 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/engine_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
matrix:
os: [ubuntu-22.04]
python-version: ["3.10"]
env:
GITHUB_HEAD_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -21,7 +23,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python install.py devel
python install.py devel --version=$GITHUB_HEAD_REF
- name: Calculators and documentation tests
run: |
source ~/openquake/bin/activate
Expand All @@ -35,6 +37,8 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
env:
GITHUB_HEAD_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -43,7 +47,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python install.py devel
python install.py devel --version=$GITHUB_HEAD_REF
- name: Hazardlib tests
run: |
source ~/openquake/bin/activate
Expand All @@ -59,6 +63,8 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
env:
GITHUB_HEAD_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -67,7 +73,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python install.py devel
python install.py devel --version=$GITHUB_HEAD_REF
- name: Server 'PUBLIC' mode tests
run: |
source ~/openquake/bin/activate
Expand All @@ -80,6 +86,8 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
env:
GITHUB_HEAD_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -88,7 +96,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python install.py devel
python install.py devel --version=$GITHUB_HEAD_REF
- name: Server 'READ_ONLY' mode tests
run: |
source ~/openquake/bin/activate
Expand All @@ -101,6 +109,8 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
env:
GITHUB_HEAD_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -109,7 +119,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python install.py devel
python install.py devel --version=$GITHUB_HEAD_REF
- name: Server 'AELO' mode tests
run: |
source ~/openquake/bin/activate
Expand Down
4 changes: 2 additions & 2 deletions openquake/baselib/writers.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ def save(self, data, fname, header=(), comment=None, renamedict=None):
if isinstance(data, pandas.DataFrame):
if comment is None:
data.to_csv(fname, index=False, float_format=self.fmt,
line_terminator='\r\n', na_rep='nan')
lineterminator='\r\n', na_rep='nan')
else:
write_csv(fname, [], self.sep, self.fmt, list(data.columns),
comment=comment)
data.to_csv(fname, index=False, float_format=self.fmt,
line_terminator='\r\n', na_rep='nan',
lineterminator='\r\n', na_rep='nan',
header=False, mode='a')
else:
write_csv(fname, data, self.sep, self.fmt, header, comment,
Expand Down
2 changes: 1 addition & 1 deletion openquake/calculators/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ def view_risk_by_event(token, dstore):
del df['agg_id']
out = io.StringIO()
df[:30].to_csv(out, sep='\t', index=False, float_format='%.1f',
line_terminator='\r\n')
lineterminator='\r\n')
return out.getvalue()


Expand Down
2 changes: 1 addition & 1 deletion openquake/commands/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import cProfile
import warnings
import getpass
from pandas.core.common import SettingWithCopyWarning
from pandas.errors import SettingWithCopyWarning

from openquake.baselib import performance, general
from openquake.hazardlib import valid
Expand Down
2 changes: 1 addition & 1 deletion openquake/hazardlib/tests/calc/cond_spectra_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def test_2_rlzs(self):
# check the result
expected = os.path.join(CWD, 'expected', 'spectra2.csv')
if OVERWRITE_EXPECTED:
df.to_csv(expected, index=False, line_terminator='\r\n',
df.to_csv(expected, index=False, lineterminator='\r\n',
float_format='%.6f')
expdf = pandas.read_csv(expected)
pandas.testing.assert_frame_equal(df, expdf, atol=1E-6)
Expand Down
2 changes: 1 addition & 1 deletion openquake/hazardlib/tests/gsim/can15/nbcc_aa13_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test_gmf(self):
fname = 'NBCC2015_AA13_%s.csv' % cmaker.trt.replace(' ', '')
path = os.path.join(CWD, 'data', 'CAN15', fname)
if OVERWRITE:
gmfdata.to_csv(path, index=False, line_terminator='\r\n')
gmfdata.to_csv(path, index=False, lineterminator='\r\n')
else:
expected = pandas.read_csv(path)
for col in expected.columns:
Expand Down
2 changes: 1 addition & 1 deletion openquake/hazardlib/tests/site_amplification_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def test_dupl(self):
index='ampcode')
with self.assertRaises(ValueError) as ctx:
Amplifier(self.imtls, df, self.soil_levels)
self.assertEqual(str(ctx.exception), "Found duplicates for b'A'")
self.assertEqual(str(ctx.exception), "Found duplicates for (b'A',)")

def test_resampling(self):
path = os.path.dirname(os.path.abspath(__file__))
Expand Down
2 changes: 1 addition & 1 deletion requirements-py310-linux64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# GEM Mirror
#
https://wheelhouse.openquake.org/v3/linux/py310/pandas-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py310/scipy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py310/h5py-3.7.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py310/Pillow-9.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Expand All @@ -19,6 +18,7 @@ https://wheelhouse.openquake.org/v3/linux/py310/psutil-5.9.2-cp310-cp310-manylin
https://wheelhouse.openquake.org/v3/linux/py310/GDAL-3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py310/Fiona-1.8.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py310/pyproj-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py310/pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
#
#python
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py310-macos_arm64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# GEM Mirror
#
https://wheelhouse.openquake.org/macos/arm64/py310/pandas-1.4.2-cp310-cp310-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py310/scipy-1.8.1-cp310-cp310-macosx_12_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py310/h5py-3.7.0-cp310-cp310-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py310/Pillow-9.2.0-cp310-cp310-macosx_11_0_arm64.whl
Expand All @@ -19,6 +18,7 @@ https://wheelhouse.openquake.org/macos/arm64/py310/Fiona-1.8.21-cp310-cp310-maco
https://wheelhouse.openquake.org/macos/arm64/py310/GDAL-3.4.3-cp310-cp310-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py310/pyproj-3.4.0-cp310-cp310-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py310/psutil-5.9.3-cp310-cp310-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py310/pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl
#python
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py310-macos_x86_64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# GEM Mirror
#
https://wheelhouse.openquake.org/v3/macos/py310/pandas-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py310/scipy-1.8.1-cp310-cp310-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py310/h5py-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py310/Pillow-9.2.0-cp310-cp310-macosx_10_10_x86_64.whl
Expand All @@ -19,6 +18,7 @@ https://wheelhouse.openquake.org/v3/macos/py310/numpy-1.23.3-cp310-cp310-macosx_
https://wheelhouse.openquake.org/v3/macos/py310/Fiona-1.8.21-cp310-cp310-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py310/GDAL-3.4.3-cp310-cp310-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py310/pyproj-3.4.0-cp310-cp310-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py310/pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl
#python
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py310-win64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# GEM Mirror
#
https://wheelhouse.openquake.org/v3/windows/py310/pandas-1.3.5-cp310-cp310-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py310/scipy-1.8.1-cp310-cp310-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py310/h5py-3.7.0-cp310-cp310-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py310/Pillow-9.2.0-cp310-cp310-win_amd64.whl
Expand All @@ -21,6 +20,7 @@ https://wheelhouse.openquake.org/v3/windows/py310/numpy-1.23.3-cp310-cp310-win_a
https://wheelhouse.openquake.org/v3/windows/py310/pyproj-3.4.0-cp310-cp310-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py310/numba-0.56.2-cp310-cp310-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py310/llvmlite-0.39.1-cp310-cp310-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py310/pandas-2.0.3-cp310-cp310-win_amd64.whl
#
#python
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py38-linux64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# GEM Mirror
https://wheelhouse.openquake.org/v3/linux/py38/h5py-3.7.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/setproctitle-1.2.2-cp38-cp38-manylinux1_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/pandas-1.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/psutil-5.6.7-cp38-cp38-manylinux1_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/Shapely-1.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/scipy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Expand All @@ -18,6 +17,7 @@ https://wheelhouse.openquake.org/v3/linux/py38/llvmlite-0.39.1-cp38-cp38-manylin
https://wheelhouse.openquake.org/v3/linux/py38/pyzmq-23.2.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/pyproj-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/Pillow-9.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py38/pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py38-macos_x86_64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
https://wheelhouse.openquake.org/v3/macos/py38/h5py-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/numpy-1.23.3-cp38-cp38-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/scipy-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/pandas-1.3.5-cp38-cp38-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/Pillow-9.2.0-cp38-cp38-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/pyzmq-23.2.1-cp38-cp38-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/psutil-5.6.7-cp38-cp38-macosx_10_9_intel.whl
Expand All @@ -18,6 +17,7 @@ https://wheelhouse.openquake.org/v3/macos/py38/kiwisolver-1.4.4-cp38-cp38-macosx
https://wheelhouse.openquake.org/v3/macos/py38/Fiona-1.8.21-cp38-cp38-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/GDAL-3.4.3-cp38-cp38-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/pyproj-3.4.0-cp38-cp38-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py38/pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py38-win64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
https://wheelhouse.openquake.org/v3/windows/py38/setproctitle-1.2.2-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/h5py-3.1.0-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/numpy-1.23.3-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/pandas-1.3.5-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/psutil-5.6.7-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/Shapely-1.8.0-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/pyzmq-23.2.1-cp38-cp38-win_amd64.whl
Expand All @@ -16,6 +15,7 @@ https://wheelhouse.openquake.org/v3/windows/py38/scipy-1.8.1-cp38-cp38-win_amd64
https://wheelhouse.openquake.org/v3/windows/py38/Pillow-9.2.0-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/numba-0.56.2-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/llvmlite-0.39.1-cp38-cp38-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py38/pandas-2.0.3-cp38-cp38-win_amd64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py39-linux64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ https://wheelhouse.openquake.org/v3/linux/py39/h5py-3.7.0-cp39-cp39-manylinux_2_
https://wheelhouse.openquake.org/v3/linux/py39/setproctitle-1.2.2-cp39-cp39-manylinux1_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/numpy-1.23.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/scipy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/pandas-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/pyzmq-23.2.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/psutil-5.8.0-cp39-cp39-manylinux2010_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/Shapely-1.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Expand All @@ -17,6 +16,7 @@ https://wheelhouse.openquake.org/v3/linux/py39/Pillow-8.1.2-cp39-cp39-manylinux1
https://wheelhouse.openquake.org/v3/linux/py39/GDAL-3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/Fiona-1.8.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/pyproj-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
https://wheelhouse.openquake.org/v3/linux/py39/pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py39-macos_arm64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# !! must update pip first! so wheels will be used !!
# GEM Mirror
#
https://wheelhouse.openquake.org/macos/arm64/py39/pandas-1.4.2-cp39-cp39-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py39/tornado-6.1-cp39-cp39-macosx_12_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py39/matplotlib-3.5.2-cp39-cp39-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py39/Shapely-1.8.2-cp39-cp39-macosx_11_0_arm64.whl
Expand All @@ -18,6 +17,7 @@ https://wheelhouse.openquake.org/macos/arm64/py39/psutil-5.9.3-cp39-cp39-macosx_
https://wheelhouse.openquake.org/macos/arm64/py39/Fiona-1.8.21-cp39-cp39-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py39/GDAL-3.4.3-cp39-cp39-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py39/pyproj-3.4.0-cp39-cp39-macosx_11_0_arm64.whl
https://wheelhouse.openquake.org/macos/arm64/py39/pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py39-macos_x86_64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ https://wheelhouse.openquake.org/v3/macos/py39/matplotlib-3.5.3-cp39-cp39-macosx
https://wheelhouse.openquake.org/v3/macos/py39/h5py-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/numpy-1.23.3-cp39-cp39-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/scipy-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/pandas-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/pyzmq-23.2.1-cp39-cp39-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/psutil-5.8.0-cp39-cp39-macosx_10_9_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/Shapely-1.8.4-cp39-cp39-macosx_10_9_x86_64.whl
Expand All @@ -20,6 +19,7 @@ https://wheelhouse.openquake.org/v3/macos/py39/numba-0.56.2-cp39-cp39-macosx_10_
https://wheelhouse.openquake.org/v3/macos/py39/Fiona-1.8.21-cp39-cp39-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/GDAL-3.4.3-cp39-cp39-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/pyproj-3.4.0-cp39-cp39-macosx_10_10_x86_64.whl
https://wheelhouse.openquake.org/v3/macos/py39/pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion requirements-py39-win64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
https://wheelhouse.openquake.org/v3/windows/py39/h5py-3.1.0-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/setproctitle-1.2.2-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/numpy-1.23.3-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/pandas-1.3.5-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/psutil-5.8.0-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/Shapely-1.8.0-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/kiwisolver-1.3.1-cp39-cp39-win_amd64.whl
Expand All @@ -19,6 +18,7 @@ https://wheelhouse.openquake.org/v3/windows/py39/scipy-1.8.1-cp39-cp39-win_amd64
https://wheelhouse.openquake.org/v3/windows/py39/Pillow-9.2.0-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/numba-0.56.2-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/llvmlite-0.39.1-cp39-cp39-win_amd64.whl
https://wheelhouse.openquake.org/v3/windows/py39/pandas-2.0.3-cp39-cp39-win_amd64.whl
#
https://wheelhouse.openquake.org/v3/py/python_dateutil-2.8.2-py2.py3-none-any.whl
https://wheelhouse.openquake.org/v3/py/pyparsing-2.4.0-py2.py3-none-any.whl
Expand Down

0 comments on commit 0ceae6a

Please sign in to comment.