On 23/07/2024 17:28, Grzegorz Bokota wrote:
> Did use auditwheel https://pypi.org/project/auditwheel/ will not allow
> to
> solve/early detect such problems? Based on my experience, it thoroughly
> checks required glibc version against wheel tag.
>> Regards,
> Grzegorz Bokota
I use auditwheel for the sip module wheels but not for the PyQt wheels.
The real problem isn't the incorrect manylinux tag, it's that the module
requires (for no good reason) a newer glibc.
I don't know if gcc has a flag which says compile for a particular
version of glibc (both macOS and Windows do have something similar).
Phil
> wt., 23 lip 2024 o 18:00 Phil Thompson <phil at riverbankcomputing.com>
> napisał(a):
>>> I think this is another case of using a too new Linux distribution to
>> build the wheel (like the problem with PyQt5). PyQt-builder sets the
>> manylinux version to 2.28 when it should really inspect the extension
>> module for GLIBC symbols. From memory 6.7.1 was built on Ubuntu 22.04
>> and v6.7.0 on 20.04.
>>>> I'm in the process of moving from virtual machines to docker
>> containers
>> for the Linux builds so I should be able to confirm and correct this
>> fairly easily.
>>>> Thanks,
>> Phil
>>>> On 23/07/2024 13:34, Holger.Joukl at LBBW.de wrote:
>> > Hi,
>> >
>> > (very very) long time no see on this list. 😉
>> >
>> > I just ran into an issue trying the latest & greatest PyQt6 version
>> > 6.7.1.
>> > Looks to me like the wheel that gets installed by pip
>> > (PyQt6-6.7.1-cp38-abi3-manylinux_2_28_x86_64.whl)
>> > doesn't fit the advertised manylinux glibc.
>> >
>> > I'm running on RHEL 8.10 using Python 3.11. While 6.7.1 errors out
>> > with a missing glibc version error,
>> > 6.7.0 works just fine.
>> >
>> > Here goes:
>> >
>> > # Cleanup PyQt & deps.
>> > 0 $ .venv/python3.11/test/bin/pip uninstall PyQt6 PyQt6-Qt6 PyQt6-sip
>> > -y
>> > Found existing installation: PyQt6 6.7.1
>> > Uninstalling PyQt6-6.7.1:
>> > Successfully uninstalled PyQt6-6.7.1
>> > Found existing installation: PyQt6-Qt6 6.7.2
>> > Uninstalling PyQt6-Qt6-6.7.2:
>> > Successfully uninstalled PyQt6-Qt6-6.7.2
>> > Found existing installation: PyQt6_sip 13.8.0
>> > Uninstalling PyQt6_sip-13.8.0:
>> > Successfully uninstalled PyQt6_sip-13.8.0
>> > 0 $ # Make sure there's no bogus stuff cached.
>> > 0 $ rm -fr ~/.cache/pip
>> >
>> > # Install PyQt 6.7.1 & run myapp with it.
>> > 0 $ .venv/python3.11/test/bin/pip install PyQt6
>> > Collecting PyQt6
>> > Downloading PyQt6-6.7.1-cp38-abi3-manylinux_2_28_x86_64.whl.metadata
>> > (2.1 kB)
>> > Collecting PyQt6-sip<14,>=13.8 (from PyQt6)
>> > Downloading
>> >
>> PyQt6_sip-13.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl.metadata
>> > (420 bytes)
>> > Collecting PyQt6-Qt6<6.8.0,>=6.7.0 (from PyQt6)
>> > Downloading
>> > PyQt6_Qt6-6.7.2-py3-none-manylinux_2_28_x86_64.whl.metadata (534
>> > bytes)
>> > Downloading PyQt6-6.7.1-cp38-abi3-manylinux_2_28_x86_64.whl (8.2 MB)
>> > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/8.2 MB 1.4 MB/s eta
>> > 0:00:00
>> > Downloading PyQt6_Qt6-6.7.2-py3-none-manylinux_2_28_x86_64.whl (74.3
>> > MB)
>> > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 74.3/74.3 MB 7.1 MB/s eta
>> > 0:00:00
>> > Downloading
>> > PyQt6_sip-13.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl
>> > (293 kB)
>> > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 293.9/293.9 kB 10.1 MB/s
>> > eta 0:00:00
>> > Installing collected packages: PyQt6-Qt6, PyQt6-sip, PyQt6
>> > Successfully installed PyQt6-6.7.1 PyQt6-Qt6-6.7.2 PyQt6-sip-13.8.0
>> > 0 $ .venv/python3.11/test/bin/myapp
>> > Traceback (most recent call last):
>> > File ".venv/python3.11/test/bin/myapp", line 384, in <module>
>> > main()
>> > File ".venv/python3.11/test/bin/myapp", line 355, in main
>> > import iedit.config
>> > File "src/iedit/config.py", line 16, in <module>
>> > from qtutils.DictBuilderDialog import EnumerationColumn,
>> > FQVColumn, TextColumn
>> > File
>> >
>> ".venv/python3.11/test/lib64/python3.11/site-packages/qtutils/DictBuilderDialog.py",
>> > line 5, in <module>
>> > from qt import QVBoxLayout, QHBoxLayout, QGridLayout
>> > File
>> > ".venv/python3.11/test/lib64/python3.11/site-packages/qt/__init__.py",
>> > line 27, in <module>
>> > from qtpy.QtGui import (
>> > File
>> > ".venv/python3.11/test/lib64/python3.11/site-packages/qtpy/QtGui.py",
>> > line 57, in <module>
>> > from PyQt6 import QtGui
>> > ImportError: /lib64/libm.so.6: version `GLIBC_2.35' not found
>> > (required by
>> > .venv/python3.11/test/lib64/python3.11/site-packages/PyQt6/QtGui.abi3.so
>> )
>> >
>> >
>> > If I force the previous PyQt 6.7.0 version instead everything works
>> > smoothly:
>> >
>> > # Uninstall PyQt 6.7.1 & deps.
>> > 1 $ .venv/python3.11/test/bin/pip uninstall PyQt6 PyQt6-Qt6 PyQt6-sip
>> > -y
>> > Found existing installation: PyQt6 6.7.1
>> > Uninstalling PyQt6-6.7.1:
>> > Successfully uninstalled PyQt6-6.7.1
>> > Found existing installation: PyQt6-Qt6 6.7.2
>> > Uninstalling PyQt6-Qt6-6.7.2:
>> > Successfully uninstalled PyQt6-Qt6-6.7.2
>> > Found existing installation: PyQt6_sip 13.8.0
>> > Uninstalling PyQt6_sip-13.8.0:
>> > Successfully uninstalled PyQt6_sip-13.8.0
>> >
>> > # Install PyQt 6.7.0 & run myapp.
>> > 0 $ .venv/python3.11/test/bin/pip install PyQt6==6.7.0
>> > Collecting PyQt6==6.7.0
>> > Downloading
>> > PyQt6-6.7.0-1-cp38-abi3-manylinux_2_28_x86_64.whl.metadata (2.1 kB)
>> > Collecting PyQt6-sip<14,>=13.6 (from PyQt6==6.7.0)
>> > Using cached
>> >
>> PyQt6_sip-13.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl.metadata
>> > (420 bytes)
>> > Collecting PyQt6-Qt6<6.8.0,>=6.7.0 (from PyQt6==6.7.0)
>> > Using cached
>> > PyQt6_Qt6-6.7.2-py3-none-manylinux_2_28_x86_64.whl.metadata (534
>> > bytes)
>> > Downloading PyQt6-6.7.0-1-cp38-abi3-manylinux_2_28_x86_64.whl (8.1 MB)
>> > ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.1/8.1 MB 29.7 MB/s eta
>> > 0:00:00
>> > Using cached PyQt6_Qt6-6.7.2-py3-none-manylinux_2_28_x86_64.whl (74.3
>> > MB)
>> > Using cached
>> > PyQt6_sip-13.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl
>> > (293 kB)
>> > Installing collected packages: PyQt6-Qt6, PyQt6-sip, PyQt6
>> > Successfully installed PyQt6-6.7.0 PyQt6-Qt6-6.7.2 PyQt6-sip-13.8.0
>> > 0 $ .venv/python3.11/test/bin/myapp
>> > # myapp runs successfully...
>> >
>> >
>> > Looks to me like something might be amiss with the wheel build here -
>> > the advertised manylinux_2_28
>> > should work on a glibc 2.28 system (like RHEL 8+) according to
>> > https://github.com/pypa/manylinux.
>> >
>> > Best regards,
>> > Holger
>> >
>> > (Please bear with me & ignore the lengthy corporate disclaimer usually
>> > added here, sorry...)
>> >
>> >
>> >
>> > Landesbank Baden-Wuerttemberg
>> > Anstalt des oeffentlichen Rechts
>> > Hauptsitze: Stuttgart, Karlsruhe, Mannheim, Mainz
>> > HRA 12704
>> > Amtsgericht Stuttgart
>> > HRA 4356, HRA 104 440
>> > Amtsgericht Mannheim
>> > HRA 40687
>> > Amtsgericht Mainz
>> >
>> > Die LBBW verarbeitet gemaess Erfordernissen der DSGVO Ihre
>> > personenbezogenen Daten.
>> > Informationen finden Sie unter www.lbbw.de/datenschutz.
>>
More information about the PyQt
mailing list
‘She has never mentioned her father to me. Was he—well, the sort of man whom the County Club would not have blackballed?’ "We walked by the side of our teams or behind the wagons, we slept on the ground at night, we did our own cooking, we washed our knives by sticking them into the ground rapidly a few times, and we washed our plates with sand and wisps of grass. When we stopped, we arranged our wagons in a circle, and thus formed a 'corral,' or yard, where we drove our oxen to yoke them up. And the corral was often very useful as a fort, or camp, for defending ourselves against the Indians. Do you see that little hollow down there?" he asked, pointing to a depression in the ground a short distance to the right of the train. "Well, in that hollow our wagon-train was kept three days and nights by the Indians. Three days and nights they stayed around, and made several attacks. Two of our men were killed and three were wounded by their arrows, and others had narrow escapes. One arrow hit me on the throat, but I was saved by the knot of my neckerchief, and the point only tore the skin a little. Since that time I have always had a fondness for large neckties. I don't know how many of the Indians we killed, as they carried off their dead and wounded, to save them from being scalped. Next to getting the scalps of their enemies, the most important thing with the Indians is to save their own. We had several fights during our journey, but that one was the worst. Once a little party of us were surrounded in a small 'wallow,' and had a tough time to defend ourselves successfully. Luckily for us, the Indians had no fire-arms then, and their bows and arrows were no match for our rifles. Nowadays they are well armed, but there are[Pg 41] not so many of them, and they are not inclined to trouble the railway trains. They used to do a great deal of mischief in the old times, and many a poor fellow has been killed by them." As dusk came on nearly the whole population of Maastricht, with all their temporary guests, formed an endless procession and went to invoke God's mercy by the Virgin Mary's intercession. They went to Our Lady's Church, in which stands the miraculous statue of Sancta Maria Stella Maris. The procession filled all the principal streets and squares of the town. I took my stand at the corner of the Vrijthof, where all marched past me, men, women, and children, all praying aloud, with loud voices beseeching: "Our Lady, Star of the Sea, pray for us ... pray for us ... pray for us ...!" It had not occurred to her for some hours after Mrs. Campbell had told her of Landor's death that she was free now to give herself to Cairness. She had gasped, indeed, when she did remember it, and had put the thought away, angrily and self-reproachfully. But it returned now, and she felt that she might cling to it. She had been grateful, and she had been faithful, too.[Pg 286] She remembered only that Landor had been kind to her, and forgot that for the last two years she had borne with much harsh coldness, and with a sort of contempt which she felt in her unanalyzing mind to have been entirely unmerited. Gradually she raised herself until she sat quite erect by the side of the mound, the old exultation of her half-wild girlhood shining in her face as she planned the future, which only a few minutes before had seemed so hopeless. After he had gloated over Sergeant Ramsey, Shorty got his men into the road ready to start. Si placed himself in front of the squad and deliberately loaded his musket in their sight. Shorty took his place in the rear, and gave out: The groups about each gun thinned out, as the shrieking fragments of shell mowed down man after man, but the rapidity of the fire did not slacken in the least. One of the Lieutenants turned and motioned with his saber to the riders seated on their horses in the line of limbers under the cover of the slope. One rider sprang from each team and ran up to take the place of men who had fallen. "As long as there's men and women in the world, the men 'ull be top and the women bottom." Then, in the house, the little girls were useful. Mrs. Backfield was not so energetic as she used to be. She had never been a robust woman, and though her husband's care had kept her well and strong, her frame was not equal to Reuben's demands; after fourteen years' hard labour, she suffered from rheumatism, which though seldom acute, was inclined to make her stiff and slow. It was here that Caro and Tilly came in, and Reuben began to appreciate his girls. After all, girls were needed in a house—and as for young men and marriage, their father could easily see that such follies did not spoil their usefulness or take them from him. Caro and Tilly helped their grandmother in all sorts of ways—they dusted, they watched pots, they shelled peas and peeled potatoes, they darned house-linen, they could even make a bed between them. HoME一级毛片视频免费公开
ENTER NUMBET 0018www.boaisuxin.com.cn jiacao.com.cn szgdst.com.cn www.lounen.com.cn xzxp.net.cn mxvd.com.cn www.svpx.com.cn www.habble.com.cn pktixi.com.cn www.lomax.net.cn