Skip to content

Commit c0ff67a

Browse files
charlesdong1991TomAugspurger
authored andcommitted
BUG: Add mapping for pyqt for successful package installation (#27645)
* Add mapping for pyqt
1 parent 3581073 commit c0ff67a

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Diff for: doc/source/whatsnew/v1.0.0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ Sparse
188188

189189
Build Changes
190190
^^^^^^^^^^^^^
191+
- Fixed pyqt development dependency issue because of different pyqt package name in conda and PyPI (:issue:`26838`)
191192

192193

193194
ExtensionArray

Diff for: environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ dependencies:
7171
- lxml # pandas.read_html
7272
- openpyxl # pandas.read_excel, DataFrame.to_excel, pandas.ExcelWriter, pandas.ExcelFile
7373
- pyarrow>=0.9.0 # pandas.read_paquet, DataFrame.to_parquet, pandas.read_feather, DataFrame.to_feather
74-
- pyqt # pandas.read_clipbobard
74+
- pyqt>=5.9.2 # pandas.read_clipboard
7575
- pytables>=3.4.2 # pandas.read_hdf, DataFrame.to_hdf
7676
- python-snappy # required by pyarrow
7777
- s3fs # pandas.read_csv... when using 's3://...' path

Diff for: requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ html5lib
4545
lxml
4646
openpyxl
4747
pyarrow>=0.9.0
48-
pyqt
48+
pyqt5>=5.9.2
4949
tables>=3.4.2
5050
python-snappy
5151
s3fs

Diff for: scripts/generate_pip_deps_from_conda.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
EXCLUDE = {"python=3"}
23-
RENAME = {"pytables": "tables"}
23+
RENAME = {"pytables": "tables", "pyqt": "pyqt5"}
2424

2525

2626
def conda_package_to_pip(package):

0 commit comments

Comments
 (0)