Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ruff: Fix Python 3.10 violations #3040

Merged
merged 4 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@
"doc_path": "doc",
"galleries": sphinx_gallery_conf["gallery_dirs"],
"gallery_dir": dict(
zip(sphinx_gallery_conf["gallery_dirs"], sphinx_gallery_conf["examples_dirs"])
zip(
sphinx_gallery_conf["gallery_dirs"],
sphinx_gallery_conf["examples_dirs"],
strict=True,
)
),
"github_repo": repository,
"github_version": "main",
Expand Down
4 changes: 3 additions & 1 deletion pygmt/clib/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,9 @@ def virtualfile_from_vectors(self, *vectors):
if len(string_arrays) == 1:
strings = string_arrays[0]
elif len(string_arrays) > 1:
strings = np.array([" ".join(vals) for vals in zip(*string_arrays)])
strings = np.array(
[" ".join(vals) for vals in zip(*string_arrays, strict=True)]
)
strings = np.asanyarray(a=strings, dtype=str)
self.put_strings(
dataset, family="GMT_IS_VECTOR|GMT_IS_DUPLICATE", strings=strings
Expand Down
3 changes: 2 additions & 1 deletion pygmt/datasets/samples.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""
Functions to load sample data.
"""
from typing import Callable, Literal, NamedTuple
from collections.abc import Callable
from typing import Literal, NamedTuple

import pandas as pd
from pygmt.exceptions import GMTInvalidInput
Expand Down
7 changes: 5 additions & 2 deletions pygmt/helpers/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ def data_kind(data=None, x=None, y=None, z=None, required_z=False, required_data
'image'
"""
# determine the data kind
if isinstance(data, (str, pathlib.PurePath)):
if isinstance(data, str | pathlib.PurePath):
kind = "file"
elif isinstance(data, (bool, int, float)) or (data is None and not required_data):
elif isinstance(data, bool | int | float) or (data is None and not required_data):
kind = "arg"
elif isinstance(data, xr.DataArray):
kind = "image" if len(data.dims) == 3 else "grid"
Expand Down Expand Up @@ -257,6 +257,7 @@ def non_ascii_to_octal(argstr):
"◊〈®©™∑" # \34x-35x
"〉∫⌠⌡", # \36x-37x. \360 and \377 are undefined
[*range(32, 127), *range(160, 240), *range(241, 255)],
strict=True,
)
}
)
Expand All @@ -282,6 +283,7 @@ def non_ascii_to_octal(argstr):
"➠➡➢➣➤➥➦➧➨➩➪➫➬➭➮➯" # \34x-\35x
"➱➲➳➴➵➶➷➸➹➺➻➼➽➾", # \36x-\37x. \360 and \377 are undefined
[*range(32, 127), *range(161, 240), *range(241, 255)],
strict=True,
)
}
)
Expand All @@ -300,6 +302,7 @@ def non_ascii_to_octal(argstr):
"Œ†‡Ł⁄‹Š›œŸŽł‰„“”" # \20x-\21x
"ı`´ˆ˜¯˘˙¨‚˚¸'˝˛ˇ", # \22x-\23x
[*range(25, 32), *range(127, 160)],
strict=True,
)
}
)
Expand Down
2 changes: 1 addition & 1 deletion pygmt/src/meca.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def meca( # noqa: PLR0912, PLR0913, PLR0915
kwargs = self._preprocess(**kwargs)

# Convert spec to pandas.DataFrame unless it's a file
if isinstance(spec, (dict, pd.DataFrame)): # spec is a dict or pd.DataFrame
if isinstance(spec, dict | pd.DataFrame): # spec is a dict or pd.DataFrame
# determine convention from dict keys or pd.DataFrame column names
for conv in ["aki", "gcmt", "mt", "partial", "principal_axis"]:
if set(convention_params(conv)).issubset(set(spec.keys())):
Expand Down
2 changes: 1 addition & 1 deletion pygmt/src/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def text_( # noqa: PLR0912
extra_arrays.append(np.atleast_1d(arg))
else: # font or justify is str type
extra_arrays.append(np.atleast_1d(arg).astype(str))
elif isinstance(arg, (int, float, str)):
elif isinstance(arg, int | float | str):
kwargs["F"] += f"{flag}{arg}"

if isinstance(position, str):
Expand Down
7 changes: 5 additions & 2 deletions pygmt/tests/test_clib_virtualfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ def test_virtualfile_from_vectors_one_string_or_object_column(dtype):
with GMTTempFile() as outfile:
lib.call_module("convert", f"{vfile} ->{outfile.name}")
output = outfile.read(keep_tabs=True)
expected = "".join(f"{i}\t{j}\t{k}\n" for i, j, k in zip(x, y, strings))
expected = "".join(
f"{i}\t{j}\t{k}\n" for i, j, k in zip(x, y, strings, strict=True)
)
assert output == expected


Expand All @@ -260,7 +262,8 @@ def test_virtualfile_from_vectors_two_string_or_object_columns(dtype):
lib.call_module("convert", f"{vfile} ->{outfile.name}")
output = outfile.read(keep_tabs=True)
expected = "".join(
f"{h}\t{i}\t{j} {k}\n" for h, i, j, k in zip(x, y, strings1, strings2)
f"{h}\t{i}\t{j} {k}\n"
for h, i, j, k in zip(x, y, strings1, strings2, strict=True)
)
assert output == expected

Expand Down
4 changes: 2 additions & 2 deletions pygmt/tests/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def test_text_transparency():
"""
x = np.arange(1, 10)
y = np.arange(11, 20)
text = [f"TEXT-{i}-{j}" for i, j in zip(x, y)]
text = [f"TEXT-{i}-{j}" for i, j in zip(x, y, strict=True)]

fig = Figure()
fig.basemap(region=[0, 10, 10, 20], projection="X10c", frame=True)
Expand All @@ -368,7 +368,7 @@ def test_text_varying_transparency():
"""
x = np.arange(1, 10)
y = np.arange(11, 20)
text = [f"TEXT-{i}-{j}" for i, j in zip(x, y)]
text = [f"TEXT-{i}-{j}" for i, j in zip(x, y, strict=True)]
transparency = np.arange(10, 100, 10)

fig = Figure()
Expand Down