Skip to content

Commit f895cab

Browse files
authored
Merge pull request #904 from Unidata/dependabot-pip-ci-ruff-0.9.10
CI: (deps): Bump ruff from 0.9.9 to 0.9.10 in /ci
2 parents 47ea836 + 58400f6 commit f895cab

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ci/linting_requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ruff==0.9.9
1+
ruff==0.9.10
22

33
flake8==7.1.2
44
pycodestyle==2.12.1

examples/ndbc/buoy_type_request.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
####################################################
1515
# Request the types of data available from a given buoy.
16-
data_aval = NDBC.buoy_data_types('42001')
16+
data_aval = NDBC.buoy_data_types('42012')
1717
print(data_aval)
1818

1919
####################################################
2020
# Get a pandas data frame of all of the observations, meteorological data is the default
2121
# observation set to query.
22-
df = NDBC.realtime_observations('42001', data_type='supl')
22+
df = NDBC.realtime_observations('42012', data_type='supl')
2323
df.head()

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ classifiers = [
2626
requires-python = ">=3.10"
2727
dependencies = [
2828
"beautifulsoup4>=4.9.1",
29-
"numpy>=1.22.0",
29+
"numpy>=1.23.0",
3030
"pandas>=1.4.3",
3131
"protobuf>=3.20.0",
32-
"requests>=2.30.0"
32+
"requests>=2.30.0",
3333
]
3434

3535
[project.optional-dependencies]

0 commit comments

Comments
 (0)