-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
khmer: python update to support python 3.8-3.11 #53327
base: master
Are you sure you want to change the base?
Conversation
- @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
…) to the actual directory used by recent setuptools. Set setuptools minimum version to > 62.1 (https://stackoverflow.com/questions/14320220/testing-python-c-libraries-get-build-path)
we encounter a bug in python versioneer.
@BiocondaBot please add label |
@@ -55,8 +58,9 @@ about: | |||
|
|||
extra: | |||
additional-platforms: | |||
- linux-aarch64 | |||
- osx-arm64 | |||
# needs cqf porting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is cqf
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/splatlab/cqf
actually - looks like this only needs a tiny part to be done - gqf.c which has just 5 asm instructions to swap out: a popcnt (x2), bsr, pdep, tzcnt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we merge this PR ?
Or you want to work on cqf first ?
Let’s merge this - it might take longer to get some time or someone onto this. Thanks!
From: Martin Grigorov ***@***.***>
Date: Monday, 20 January 2025 at 14:06
To: bioconda/bioconda-recipes ***@***.***>
Cc: David Lecomber ***@***.***>, Author ***@***.***>
Subject: Re: [bioconda/bioconda-recipes] khmer: python update to support python 3.8-3.11 (PR #53327)
@martin-g commented on this pull request.
________________________________
In recipes/khmer/meta.yaml<#53327 (comment)>:
@@ -55,8 +58,9 @@ about:
extra:
additional-platforms:
- - linux-aarch64
- - osx-arm64
+# needs cqf porting
Should we merge this PR ?
Or you want to work on cqf first ?
—
Reply to this email directly, view it on GitHub<#53327 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AJFYTFT3FNTO4VSE5TNLLVL2LT7HBAVCNFSM6AAAAABVP76LSGVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDKNRSGQ4DENRWGY>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
|
Net result should be a re-enabled for python 3.8-3.11 (prior versions fail, to enable 3.12, it may require cython files to be regenerated, but that should be a separate PR.
Describe your pull request here
Please read the guidelines for Bioconda recipes before opening a pull request (PR).
General instructions
@BiocondaBot please add label
command.@bioconda/core
in a comment.Instructions for avoiding API, ABI, and CLI breakage issues
Conda is able to record and lock (a.k.a. pin) dependency versions used at build time of other recipes.
This way, one can avoid that expectations of a downstream recipe with regards to API, ABI, or CLI are violated by later changes in the recipe.
If not already present in the meta.yaml, make sure to specify
run_exports
(see here for the rationale and comprehensive explanation).Add a
run_exports
section like this:with
...
being one of:{{ pin_subpackage("myrecipe", max_pin="x") }}
{{ pin_subpackage("myrecipe", max_pin="x.x") }}
{{ pin_subpackage("myrecipe", max_pin="x.x") }}
(in such a case, please add a note that shortly mentions your evidence for that){{ pin_subpackage("myrecipe", max_pin="x.x.x") }}
(in such a case, please add a note that shortly mentions your evidence for that){{ pin_subpackage("myrecipe", max_pin=None) }}
while replacing
"myrecipe"
with eithername
if aname|lower
variable is defined in your recipe or with the lowercase name of the package in quotes.Bot commands for PR management
Please use the following BiocondaBot commands:
Everyone has access to the following BiocondaBot commands, which can be given in a comment:
@BiocondaBot please update
@BiocondaBot please add label
please review & merge
label.@BiocondaBot please fetch artifacts
You can use this to test packages locally.
Note that the
@BiocondaBot please merge
command is now depreciated. Please just squash and merge instead.Also, the bot watches for comments from non-members that include
@bioconda/<team>
and will automatically re-post them to notify the addressed<team>
.