re-run cython to support Python 3.10 + misc patches from the Debian package#1917
Open
mr-c wants to merge 10 commits into
Open
re-run cython to support Python 3.10 + misc patches from the Debian package#1917mr-c wants to merge 10 commits into
mr-c wants to merge 10 commits into
Conversation
Had to temporarily revert part of commit e94c0d9 diff --git a/setup.py b/setup.py index 8629141..eecc8ff0 100755 --- a/setup.py +++ b/setup.py @@ -64,9 +64,13 @@ ez_setup.use_setuptools(version="3.4.1") CMDCLASS = versioneer.get_cmdclass() -from setuptools import Extension as CyExtension -HAS_CYTHON = False -cy_ext = 'cpp' +import Cython +from Cython.Distutils import Extension as CyExtension +HAS_CYTHON = True +cy_ext = 'pyx' +print('*** NOTE: Found Cython, extension files will be ' + 'transpiled if this is an install invocation.', + file=sys.stderr)
Contributor
Author
|
I can migrate the Travis CI setup to GitHub Actions, if you want; let me know! |
dslarm
pushed a commit
to dslarm/bioconda-recipes
that referenced
this pull request
Jan 19, 2025
- @mr-c for the python version updates dib-lab/khmer#1917 - added SETUPTOOLS_USE_DISTUTILS=stdlib to use older directory convention for temp .o files during setup.py - remove linux-aarch64 as unsupported until cqf library is ported
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Had to temporarily revert part of commit e94c0d9 to be able to rebuild the
khmer/_oxli/*.cppfilesmake clean diff-coveror the CodeCov report that is automaticallygenerated following a successful CI build.)
changes were made?
Only backwards-compatible additions are allowed without a major version
increment. Changing file formats also requires a major version number
increment.
CHANGELOG.md? Seekeepachangelog for more details.