Skip to content

Commit 98985fa

Browse files
Merge branch 'develop' into 'master'
Merge develop into master See merge request SOLO-band/python-sdk!98
2 parents 7a9d39f + 685ba4c commit 98985fa

File tree

4 files changed

+182
-100
lines changed

4 files changed

+182
-100
lines changed

pyproject.toml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
3-
"setuptools==67.6.1",
4-
"wheel==0.37.1"
3+
"setuptools==75.1.0",
4+
"wheel==0.44.0"
55
]
66
build-backend = "setuptools.build_meta"
77

@@ -30,6 +30,8 @@ classifiers = [
3030
"Programming Language :: Python :: 3 :: Only",
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3335
"License :: Other/Proprietary License",
3436
"Operating System :: OS Independent",
3537
"Development Status :: 4 - Beta",
@@ -44,17 +46,17 @@ authors = [
4446
{ email = "[email protected]" }
4547
]
4648
dependencies = [
47-
"requests==2.28.1",
48-
"requests-oauthlib==1.3.1",
49-
"pandas==1.4.3",
50-
"numpy==1.23.0",
49+
"requests==2.32.3",
50+
"requests-oauthlib==2.0.0",
51+
"pandas==2.2.3",
52+
"numpy==2.1.1",
5153
]
5254
dynamic = ["version"]
5355

5456
[project.optional-dependencies]
5557
dev = [
56-
"setuptools==67.6.1",
57-
"wheel==0.37.1",
58+
"setuptools==75.1.0",
59+
"wheel==0.44.0",
5860
"build==0.8.0",
5961
"twine==4.0.1",
6062
"importlib-metadata==4.2.0",
@@ -83,3 +85,12 @@ target-version = ['py310']
8385

8486
[tool.isort]
8587
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/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.5.1' # Must be at the top of module
1+
__version__ = '0.5.2' # Must be at the top of module
22

33
from rogii_solo.client import SoloClient
44

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)