Skip to content
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

debug #136

Closed
wants to merge 22 commits into from
53 changes: 0 additions & 53 deletions .github/workflows/deploy-docs.yml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/pypi.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
os: [ windows-latest, ubuntu-latest, macos-latest ]
python-version: [ "3.9" ]
os: [ ubuntu-latest]
fail-fast: false
defaults:
run:
Expand Down
36 changes: 0 additions & 36 deletions .pre-commit-config.yaml

This file was deleted.

11 changes: 3 additions & 8 deletions pocean/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,11 @@
class EnhancedDataset(Dataset):
def __del__(self):
try:
self.close()
except RuntimeError:
if self.isopen():
self.close()
except TypeError:
pass

def close(self):
if not self.isopen():
return

super().close()

def vatts(self, vname):
d = {}
var = self.variables[vname]
Expand Down
Empty file removed pocean/tests/dsg/__init__.py
Empty file.
89 changes: 0 additions & 89 deletions pocean/tests/dsg/profile/test_profile_im.py

This file was deleted.

101 changes: 0 additions & 101 deletions pocean/tests/dsg/profile/test_profile_om.py

This file was deleted.

Loading