Skip to content

Commit

Permalink
Fix broken CI
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson committed Jan 3, 2025
1 parent 14e7e3b commit 6866976
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions gwcs/wcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3478,13 +3478,11 @@ def __getitem__(self, ind):
def __str__(self):
return (
f"{self.frame_name}\t "
f"{getattr(self.transform, 'name', 'None') or
type(self.transform).__name__}"
f"{getattr(self.transform, 'name', 'None') or type(self.transform).__name__}" # noqa: E501
)

def __repr__(self):
return (
f"Step(frame={self.frame_name}, "
f"transform={getattr(self.transform, 'name', 'None') or
type(self.transform).__name__})"
f"transform={getattr(self.transform, 'name', 'None') or type(self.transform).__name__})" # noqa: E501
)
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ docs = [
]
test = [
"ci-watson>=0.3.0",
"pytest>=7.0.0",
"pytest>=8.0.0",
"pytest-astropy>=0.11.0",
]

Expand Down Expand Up @@ -75,7 +75,7 @@ upload-dir = "docs/_build/html"
show-response = 1

[tool.pytest.ini_options]
minversion = 6
minversion = 8
doctest_plus = true
doctest_rst = true
text_file_format = "rst"
Expand Down

0 comments on commit 6866976

Please sign in to comment.