-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Python 3.13 removes pipes #250
Comments
Arrrgghh. Many thanks for the heads-up!!
…On Fri, Sep 13, 2024, 19:08 Stefano Rivera ***@***.***> wrote:
https://github.com/open2c/pairtools/blob/6303de6d9e992e426285840bfd10e7d5dbbc1c84/pairtools/lib/fileio.py#L2
https://docs.python.org/3.13/whatsnew/3.13.html#whatsnew313-pep594
https://docs.python.org/3.13/whatsnew/3.13.html#summary-release-highlights
============================= test session starts ==============================
platform linux -- Python 3.13.0rc2, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3.13
cachedir: .pytest_cache
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build
configfile: pytest.ini
testpaths: tests
plugins: typeguard-4.3.0
collecting ... collected 17 items / 2 errors
==================================== ERRORS ====================================
___________________ ERROR collecting tests/test_headerops.py ___________________
ImportError while importing test module '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_headerops.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib/python3.13/importlib/__init__.py:88: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/test_headerops.py:2: in <module>
from pairtools.lib import headerops
pairtools/lib/__init__.py:1: in <module>
from . import fileio
pairtools/lib/fileio.py:2: in <module>
import pipes
E ModuleNotFoundError: No module named 'pipes'
____________________ ERROR collecting tests/test_select.py _____________________
ImportError while importing test module '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_select.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib/python3.13/importlib/__init__.py:88: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/test_select.py:6: in <module>
from pairtools.lib import pairsam_format
pairtools/lib/__init__.py:1: in <module>
from . import fileio
pairtools/lib/fileio.py:2: in <module>
import pipes
E ModuleNotFoundError: No module named 'pipes'
=========================== short test summary info ============================
ERROR tests/test_headerops.py
ERROR tests/test_select.py
!!!!!!!!!!!!!!!!!!! Interrupted: 2 errors during collection !!!!!!!!!!!!!!!!!!!!
============================== 2 errors in 0.50s ===============================
—
Reply to this email directly, view it on GitHub
<#250>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAG64CTS57YQUAYCSTEG5SLZWMLZLAVCNFSM6AAAAABOFYKLFKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGUZDKMRZGQ2DIOI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
pairtools/pairtools/lib/fileio.py
Line 2 in 6303de6
https://docs.python.org/3.13/whatsnew/3.13.html#whatsnew313-pep594
https://docs.python.org/3.13/whatsnew/3.13.html#summary-release-highlights
The text was updated successfully, but these errors were encountered: