Skip to content

Commit 96b298c

Browse files
SC-2390: Fix optional params in update_meta. Switch to raw method
1 parent 9a77f2f commit 96b298c

File tree

3 files changed

+976
-4
lines changed

3 files changed

+976
-4
lines changed

pyproject.toml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"License :: Other/Proprietary License",
3536
"Operating System :: OS Independent",
3637
"Development Status :: 4 - Beta",
@@ -45,9 +46,9 @@ authors = [
4546
{ email = "[email protected]" }
4647
]
4748
dependencies = [
48-
"requests==2.28.1",
49-
"requests-oauthlib==1.3.1",
50-
"pandas==2.2.2",
49+
"requests==2.32.3",
50+
"requests-oauthlib==2.0.0",
51+
"pandas==2.2.3",
5152
"numpy==2.1.1",
5253
]
5354
dynamic = ["version"]
@@ -84,3 +85,12 @@ target-version = ['py310']
8485

8586
[tool.isort]
8687
profile = "black"
88+
89+
90+
[tool.ruff.format]
91+
quote-style = "single"
92+
line-ending = "auto"
93+
94+
[tool.ruff]
95+
target-version = "py310"
96+
line-length = 120

src/rogii_solo/papi/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ def update_well_meta(
10281028
headers: Optional[Dict] = None,
10291029
):
10301030
return self._update_meta(
1031-
url=f'wells/{well_id}',
1031+
url=f'wells/{well_id}/raw',
10321032
name=name,
10331033
operator=operator,
10341034
api=api,

0 commit comments

Comments
 (0)