paddle 1.1.9__tar.gz → 1.1.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. {paddle-1.1.9 → paddle-1.1.11}/.bumpversion.cfg +1 -1
  2. {paddle-1.1.9 → paddle-1.1.11}/PKG-INFO +1 -1
  3. {paddle-1.1.9 → paddle-1.1.11}/docker/Dockerfile +1 -0
  4. paddle-1.1.11/docker-compose.override.yaml.tmp +16 -0
  5. {paddle-1.1.9 → paddle-1.1.11}/docker-compose.yaml +2 -4
  6. {paddle-1.1.9/src → paddle-1.1.11}/paddle/__init__.py +1 -1
  7. {paddle-1.1.9 → paddle-1.1.11}/pyproject.toml +1 -1
  8. paddle-1.1.9/docker-compose.override.yaml.tmp +0 -17
  9. {paddle-1.1.9 → paddle-1.1.11}/.github/workflows/bump-and-tag.yaml +0 -0
  10. {paddle-1.1.9 → paddle-1.1.11}/.github/workflows/cd.yml +0 -0
  11. {paddle-1.1.9 → paddle-1.1.11}/.github/workflows/ci.yml +0 -0
  12. {paddle-1.1.9 → paddle-1.1.11}/.gitignore +0 -0
  13. {paddle-1.1.9 → paddle-1.1.11}/.pre-commit-config.yaml +0 -0
  14. {paddle-1.1.9 → paddle-1.1.11}/LICENSE +0 -0
  15. {paddle-1.1.9 → paddle-1.1.11}/Makefile +0 -0
  16. {paddle-1.1.9 → paddle-1.1.11}/README.md +0 -0
  17. {paddle-1.1.9 → paddle-1.1.11}/docker/.dockerignore +0 -0
  18. {paddle-1.1.9 → paddle-1.1.11}/docker/Dockerfile.cuda +0 -0
  19. {paddle-1.1.9 → paddle-1.1.11}/docker/entrypoint.sh +0 -0
  20. {paddle-1.1.9 → paddle-1.1.11}/docker/nvim/init.lua +0 -0
  21. {paddle-1.1.9 → paddle-1.1.11}/docker/nvim/lua/plugins.lua +0 -0
  22. {paddle-1.1.9 → paddle-1.1.11}/docker/requirements.txt +0 -0
  23. {paddle-1.1.9 → paddle-1.1.11}/docker/scripts/git-done +0 -0
  24. {paddle-1.1.9 → paddle-1.1.11}/docker/scripts/git-send +0 -0
  25. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/.gitignore +0 -0
  26. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/data/saturn1d.yaml +0 -0
  27. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/robert.py +0 -0
  28. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/robert.yaml +0 -0
  29. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/shock.py +0 -0
  30. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/shock.yaml +0 -0
  31. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/straka.py +0 -0
  32. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/straka.yaml +0 -0
  33. {paddle-1.1.9/tests → paddle-1.1.11/example_py_scripts}/test_saturn_adiabat.py +0 -0
  34. {paddle-1.1.9/src → paddle-1.1.11}/paddle/crm.py +0 -0
  35. {paddle-1.1.9/src → paddle-1.1.11}/paddle/evolve_kinetics.py +0 -0
  36. {paddle-1.1.9/src → paddle-1.1.11}/paddle/find_init_params.py +0 -0
  37. {paddle-1.1.9/src → paddle-1.1.11}/paddle/nc2pt.py +0 -0
  38. {paddle-1.1.9/src → paddle-1.1.11}/paddle/pt2nc.py +0 -0
  39. {paddle-1.1.9/src → paddle-1.1.11}/paddle/setup_profile.py +0 -0
  40. {paddle-1.1.9/src → paddle-1.1.11}/paddle/write_profile.py +0 -0
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.1.9
2
+ current_version = 1.1.11
3
3
  commit = True
4
4
  tag = True
5
5
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: paddle
3
- Version: 1.1.9
3
+ Version: 1.1.11
4
4
  Summary: Python Atmospheric Dynamics: Discovery and Learning about Exoplanets. An open-source, user-friendly python frontend of canoe
5
5
  Project-URL: Homepage, https://github.com/elijah-mullens/paddle
6
6
  Project-URL: Repository, https://github.com/elijah-mullens/paddle
@@ -24,6 +24,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
24
24
  ripgrep fd-find unzip neovim \
25
25
  clangd \
26
26
  nodejs npm \
27
+ libnetcdf-dev nco ncview \
27
28
  && rm -rf /var/lib/apt/lists/*
28
29
 
29
30
  # Make fd available as `fd` (Ubuntu calls it fdfind)
@@ -0,0 +1,16 @@
1
+ services:
2
+ dev:
3
+ volumes:
4
+ # This maps your physical locations to locations in docker
5
+ # (lhs:rhs, lhs = workspace on physical machine : rhs = workspace on virtual machine)
6
+ # Here we set up two directorys: your docker workspace directory that stores paddle
7
+ # (all py scripts and notebooks)
8
+ # And your data directory, that stores large data products ('results')
9
+ # While this data directory won't always be used
10
+ # (you can optionally have smaller outputs stored locally in the workspace directory)
11
+ # It is useful for very large data products, like those of gcm or mcmc scripts.
12
+ - path_to_physical_directory/paddle_docker_workspace:/paddle_docker_workspace
13
+ - path_to_physical_data_directory/:/paddke_docker_data_storage
14
+
15
+ # This is your main workspace where you can modify your source code
16
+ working_dir: /paddle_docker_workspace
@@ -11,10 +11,8 @@ services:
11
11
  - USERNAME=${USER}
12
12
  - USER_UID=${USER_UID}
13
13
  - USER_GID=${USER_GID}
14
- # This is volatile
15
- # Make sure that you use override.yaml for permanent changes
16
- working_dir: /work
14
+ working_dir: /workspace
17
15
  tty: true
18
16
  stdin_open: true
19
17
  ports:
20
- - "8888:8888"
18
+ - "8888:8888"
@@ -4,4 +4,4 @@ from .find_init_params import find_init_params
4
4
  from .evolve_kinetics import evolve_kinetics
5
5
 
6
6
  __all__ = ["setup_profile", "write_profile", "find_init_params", "evolve_kinetics"]
7
- __version__ = "1.1.9"
7
+ __version__ = "1.1.11"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "paddle"
7
- version = "1.1.9"
7
+ version = "1.1.11"
8
8
  description = "Python Atmospheric Dynamics: Discovery and Learning about Exoplanets. An open-source, user-friendly python frontend of canoe"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -1,17 +0,0 @@
1
- services:
2
- dev:
3
- build:
4
- dockerfile: docker/Dockerfile.cuda
5
- args:
6
- CUDA_VER: "12.9.1"
7
- deploy:
8
- resources:
9
- reservations:
10
- devices:
11
- # Activate this if your system supports GPU
12
- - capabilities: [gpu]
13
- volumes:
14
- # This is your main working directory
15
- - ${HOME}/work:/work
16
- # This is where you put your large simulation data
17
- - ${HOME}/data/:/data
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes