This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
forked from cctbx/dxtbx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Python 3.9, 3.10 is now the new minimum (cctbx#769)
- Loading branch information
Showing
32 changed files
with
152 additions
and
185 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Python 3.10 is now the minimum required |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from typing import Any, Tuple | ||
from typing import Any | ||
|
||
from scitbx.array_family import flex | ||
|
||
def dataset_as_flex_double(dataset_id: Any, selection: Tuple[slice]) -> flex.double: ... | ||
def dataset_as_flex_float(dataset_id: Any, selection: Tuple[slice]) -> flex.float: ... | ||
def dataset_as_flex_int(dataset_id: Any, selection: Tuple[slice]) -> flex.int: ... | ||
def dataset_as_flex_double(dataset_id: Any, selection: tuple[slice]) -> flex.double: ... | ||
def dataset_as_flex_float(dataset_id: Any, selection: tuple[slice]) -> flex.float: ... | ||
def dataset_as_flex_int(dataset_id: Any, selection: tuple[slice]) -> flex.int: ... |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.