Remove Bioformats from main install instructions#761
Merged
Conversation
- Show that Bioformats-based method has been replaced by TIF-based approach - Move up the section on viewing a TIF file without importing - Add `--savefig npy` as an alternative way to save TIF to NPY, without overwriting
Match the `install.doc` approaches in the main README, assuming that the current release no longer requires a custom repo for installing the `most` group.
Use the `license-files` field specifying in PEP 639 (https://peps.python.org/pep-0639/#add-license-files-key).
Incorporate package discovery from `setup.py` into `pyproject.toml` setup.
Specifying the flat-layout folder for automatic package discovery removed build errors, but the installed project could not find these packages. Use an `include` statement instead as inspired by astropy/astropy#15403 .
Only show in debugging now that the JVM does not need to be stopped by default.
- Redirect proprietary image format import to software that can export them to TIF - Replace `run.py` with `mm` command to avoid path-dependence
Now that these packages are deprecated in v1.6, remove them from the installation through Conda. This change matches the release install's group dependencies with the developer installation for Conda environments.
…up in README install instructions The v1.7a1 pre-release changed the `most` install group to no longer require a custom PyPi repo, but this version is only installed when a `--pre` flag is supplied. - Change the instructions back to using individual rather than the `most` install group since v1.6 is still installed by default - Group the install sections undef "Quick Install" - Add a section for installing the pre-release version, which can be performed in regular or Conda environments
3 tasks
Replace redundant install instructions from the install doc by linking to the README. This change removes the need to update install methods in both places. Also, move the Bioformats Conda section to a deprecated section.
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.
Fixes #751. This PR updates the homepage/README instructions to install using the
mostgroup, assuming that the latest wheel on PyPi does not install Bioformats/Javabridge for this group.The configuration of the license file and package discovery without
__init__.pyfor each source subfolder were also fixed in the newpyproject.tomlproject configuration.