File tree Expand file tree Collapse file tree 4 files changed +182
-100
lines changed Expand file tree Collapse file tree 4 files changed +182
-100
lines changed Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
- " setuptools==67.6.1 " ,
4
- " wheel==0.37.1 "
3
+ " setuptools==75.1.0 " ,
4
+ " wheel==0.44.0 "
5
5
]
6
6
build-backend = " setuptools.build_meta"
7
7
@@ -30,6 +30,8 @@ classifiers = [
30
30
" Programming Language :: Python :: 3 :: Only" ,
31
31
" Programming Language :: Python :: 3.10" ,
32
32
" Programming Language :: Python :: 3.11" ,
33
+ " Programming Language :: Python :: 3.12" ,
34
+ " Programming Language :: Python :: 3.13" ,
33
35
" License :: Other/Proprietary License" ,
34
36
" Operating System :: OS Independent" ,
35
37
" Development Status :: 4 - Beta" ,
@@ -44,17 +46,17 @@ authors = [
44
46
45
47
]
46
48
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 " ,
51
53
]
52
54
dynamic = [" version" ]
53
55
54
56
[project .optional-dependencies ]
55
57
dev = [
56
- " setuptools==67.6.1 " ,
57
- " wheel==0.37.1 " ,
58
+ " setuptools==75.1.0 " ,
59
+ " wheel==0.44.0 " ,
58
60
" build==0.8.0" ,
59
61
" twine==4.0.1" ,
60
62
" importlib-metadata==4.2.0" ,
@@ -83,3 +85,12 @@ target-version = ['py310']
83
85
84
86
[tool .isort ]
85
87
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
Original file line number Diff line number Diff line change 1
- __version__ = '0.5.1 ' # Must be at the top of module
1
+ __version__ = '0.5.2 ' # Must be at the top of module
2
2
3
3
from rogii_solo .client import SoloClient
4
4
Original file line number Diff line number Diff line change @@ -1028,7 +1028,7 @@ def update_well_meta(
1028
1028
headers : Optional [Dict ] = None ,
1029
1029
):
1030
1030
return self ._update_meta (
1031
- url = f'wells/{ well_id } ' ,
1031
+ url = f'wells/{ well_id } /raw ' ,
1032
1032
name = name ,
1033
1033
operator = operator ,
1034
1034
api = api ,
You can’t perform that action at this time.
0 commit comments