-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reverting pyproject.toml. This PR is just preparation for python 3.13…
… for ramp fitting. It is not to update all of STCAL for python 3.13.
- Loading branch information
1 parent
6d9363a
commit 9d52b78
Showing
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "stcal" | ||
description = "STScI tools and algorithms used in calibration pipelines" | ||
readme = "README.md" | ||
requires-python = ">=3.10,<=3.13" | ||
requires-python = ">=3.10,<3.13" | ||
authors = [ | ||
{ name = "STScI", email = "[email protected]" }, | ||
] | ||
|
@@ -39,7 +39,7 @@ docs = [ | |
"sphinx-asdf", | ||
"sphinx-astropy", | ||
"sphinx-rtd-theme", | ||
"tomli; python_version <=\"3.13\"", | ||
"tomli; python_version <=\"3.11\"", | ||
] | ||
test = [ | ||
"psutil", | ||
|
@@ -205,7 +205,7 @@ convention = "numpy" | |
ignore-fully-untyped = true # Turn of annotation checking for fully untyped code | ||
|
||
[tool.mypy] | ||
python_version = "3.13" | ||
python_version = "3.12" | ||
warn_return_any = true | ||
warn_unused_configs = true | ||
|
||
|