Open
Conversation
Explanation added to installation document. Some setup.py options moved to pyproject.toml. setup.py crashed when long_description was left in though. So it was commented out. Should consider setting license in pyproject.toml.
|
So glad to see what you've made. |
Open
lindstro
reviewed
Nov 21, 2024
| #long_description="zfp is a compressed format for representing multidimensional floating-point and integer arrays. zfp provides compressed-array classes that support high throughput read and write random access to individual array elements. zfp also supports serial and parallel compression of whole arrays using both lossless and lossy compression with error tolerances. zfp is primarily written in C and C++ but also includes Python and Fortran bindings.", | ||
| ext_modules=[Extension("zfpy", ["python/zfpy.pyx"], | ||
| include_dirs=["include", np.get_include()], | ||
| libraries=["zfp"], library_dirs=["build/lib64", "build/lib/Release"]), language_level = "3"] |
Member
There was a problem hiding this comment.
I believe older versions of Visual Studio use build/lib/Release as opposed to just build/lib. For example, see AppVeyor output for a recent commit: https://open.cdash.org/viewBuildError.php?type=1&buildid=10034583. Not sure if we need to preserve this.
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.
Explanation added to installation document.
Some setup.py options moved to pyproject.toml.
setup.py crashed when long_description
was left in though. So it was commented out.
Should consider setting license in pyproject.toml.