Fix minimum version bounds for Measurements and ReverseDiff#38
Merged
ChrisRackauckas merged 3 commits intoJan 2, 2026
Merged
Conversation
This prevents dependabot from creating PRs for every minor and patch version update of the typos tool, reducing noise in the repository.
The previous minimum version bounds were incompatible with the current dependency ecosystem, specifically due to conflicting SpecialFunctions requirements when Mooncake 0.4 is present. Changes: - Measurements: 2.0 -> 2.5 (minimum version compatible with Mooncake 0.4) - ReverseDiff: 1.0 -> 1.14 (minimum version compatible with Mooncake 0.4) Testing revealed that: - Measurements 2.0 requires SpecialFunctions 0.7-0.10.3 - ReverseDiff 1.0 requires SpecialFunctions 0.8-0.9 - Mooncake 0.4 requires SpecialFunctions >= 2.0 This created an unsolvable dependency conflict. The new minimum versions (Measurements 2.5 and ReverseDiff 1.14) are compatible with SpecialFunctions >= 2.0 and work correctly with all other dependencies. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <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.
Summary
This PR fixes incorrect minimum version bounds for
MeasurementsandReverseDiffthat were incompatible with the current dependency ecosystem.Problem
The current minimum version bounds caused dependency resolution failures when users tried to install the package with minimum versions:
Measurements = "2"(meaning >= 2.0) requiresSpecialFunctions 0.7-0.10.3ReverseDiff = "1"(meaning >= 1.0) requiresSpecialFunctions 0.8-0.9Mooncake = "0.4"requiresSpecialFunctions >= 2.0These requirements are mutually incompatible - there is no version of SpecialFunctions that satisfies all constraints when trying to install minimum versions.
Solution
Updated the minimum version bounds to:
Measurements = "2.5"- minimum version compatible with SpecialFunctions >= 2.0ReverseDiff = "1.14"- minimum version compatible with SpecialFunctions >= 2.0Testing
Verified that:
Impact
This ensures that users who have older package versions installed can successfully use FastPower.jl without encountering unsolvable dependency conflicts. The new bounds reflect the actual minimum versions that work with the current codebase and dependency requirements.
cc: @ChrisRackauckas
🤖 Generated with Claude Code