Skip to content

Commit

Permalink
Fix is_disjoint check for supported environments
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Aug 31, 2024
1 parent 83467f0 commit 85263f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-resolver/src/requires_python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl RequiresPython {

/// Returns the [`RequiresPython`] as a [`MarkerTree`].
pub fn markers(&self) -> MarkerTree {
match (self.range.0.as_ref(), self.range.0.as_ref()) {
match (self.range.0.as_ref(), self.range.1.as_ref()) {
(Bound::Included(lower), Bound::Included(upper)) => {
let mut lower = MarkerTree::expression(MarkerExpression::Version {
key: MarkerValueVersion::PythonFullVersion,
Expand Down

0 comments on commit 85263f7

Please sign in to comment.