Skip to content

BLD: add support for python 3.13 #1329

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 27, 2025

Conversation

jcrivenaes
Copy link
Collaborator

Resolves #1318

@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 81.38%. Comparing base (0375fed) to head (9c30cea).
Report is 85 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1329      +/-   ##
==========================================
+ Coverage   80.02%   81.38%   +1.35%     
==========================================
  Files          98       94       -4     
  Lines       13680    12480    -1200     
  Branches     2203     1880     -323     
==========================================
- Hits        10948    10157     -791     
+ Misses       1999     1668     -331     
+ Partials      733      655      -78     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@@ -225,7 +224,7 @@ def export_rms_ascii(self, wfile, precision=4):
# make the disc as is np.int
for lname in self.wlogtypes:
if self.wlogtypes[lname] == _AttrType.DISC.value:
tmpdf[[lname]] = tmpdf[[lname]].astype(int)
tmpdf[[lname]] = tmpdf[[lname]].fillna(-999).astype(int)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python 3.13 seems somewhat stricter on casting, and also on escape character

@jcrivenaes jcrivenaes merged commit 464a0d0 into equinor:main Apr 27, 2025
40 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support for python 3.13
3 participants