Make Pynteny pip-only: remove bioconda references and conda recipes#99
Merged
Conversation
The package is distributed via pip only now, so remove the remaining conda / bioconda references that described the old build: - README.md: drop the four Anaconda/Bioconda badges, remove the "install with conda" block, and remove `conda activate pynteny` from the usage snippet. Update the Python badge to 3.9 | 3.12. - docs/index.md: remove the conda install block. - Installation now points to `pip install git+https://github.com/Robaina/Pynteny.git` with a note that `pip install pynteny` will work once published to PyPI (the package is not on PyPI yet, so the plain `pip install pynteny` line was not actually installable). The Colab example uses the git install too. - Remove the obsolete conda packaging recipes (.conda/, .bioconda/). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Follow-up to #98. Now that Pynteny is distributed as a pure-pip package, this removes the leftover conda/bioconda references that still described the old build.
Changes
conda activate pyntenyfrom the usage snippet; updated the Python badge to3.9 | 3.12.pip install git+https://github.com/Robaina/Pynteny.git, with a note thatpip install pyntenywill work once published to PyPI. (Pynteny is not on PyPI yet — the plainpip install pyntenyline was not actually installable.) The Colab example notebook uses the git install too..conda/and.bioconda/.Not touched (still conda-based, left functional)
envs/pynteny-dev.ymland.devcontainer/(miniconda) still work — they pip-install pyhmmer/pyrodigal inside a conda env. Happy to convert these to a pure-pip dev/devcontainer setup in a follow-up if wanted.Note on PyPI
Pynteny isn't published to PyPI, so
pip install pyntenywon't work until a release is set up. Consider a release/publish workflow (e.g.pypa/gh-action-pypi-publishon tag) so the documented command becomes valid.🤖 Generated with Claude Code