File tree Expand file tree Collapse file tree 3 files changed +976
-4
lines changed Expand file tree Collapse file tree 3 files changed +976
-4
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ classifiers = [
31
31
" Programming Language :: Python :: 3.10" ,
32
32
" Programming Language :: Python :: 3.11" ,
33
33
" Programming Language :: Python :: 3.12" ,
34
+ " Programming Language :: Python :: 3.13" ,
34
35
" License :: Other/Proprietary License" ,
35
36
" Operating System :: OS Independent" ,
36
37
" Development Status :: 4 - Beta" ,
@@ -45,9 +46,9 @@ authors = [
45
46
46
47
]
47
48
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 " ,
51
52
" numpy==2.1.1" ,
52
53
]
53
54
dynamic = [" version" ]
@@ -84,3 +85,12 @@ target-version = ['py310']
84
85
85
86
[tool .isort ]
86
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 @@ -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