paddle 1.1.9__tar.gz → 1.1.10__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.10}/.bumpversion.cfg +1 -1
  2. {paddle-1.1.9 → paddle-1.1.10}/PKG-INFO +1 -1
  3. paddle-1.1.10/docker-compose.override.yaml.tmp +6 -0
  4. {paddle-1.1.9 → paddle-1.1.10}/docker-compose.yaml +1 -1
  5. {paddle-1.1.9 → paddle-1.1.10}/pyproject.toml +1 -1
  6. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/__init__.py +1 -1
  7. paddle-1.1.9/docker-compose.override.yaml.tmp +0 -17
  8. {paddle-1.1.9 → paddle-1.1.10}/.github/workflows/bump-and-tag.yaml +0 -0
  9. {paddle-1.1.9 → paddle-1.1.10}/.github/workflows/cd.yml +0 -0
  10. {paddle-1.1.9 → paddle-1.1.10}/.github/workflows/ci.yml +0 -0
  11. {paddle-1.1.9 → paddle-1.1.10}/.gitignore +0 -0
  12. {paddle-1.1.9 → paddle-1.1.10}/.pre-commit-config.yaml +0 -0
  13. {paddle-1.1.9 → paddle-1.1.10}/LICENSE +0 -0
  14. {paddle-1.1.9 → paddle-1.1.10}/Makefile +0 -0
  15. {paddle-1.1.9 → paddle-1.1.10}/README.md +0 -0
  16. {paddle-1.1.9 → paddle-1.1.10}/docker/.dockerignore +0 -0
  17. {paddle-1.1.9 → paddle-1.1.10}/docker/Dockerfile +0 -0
  18. {paddle-1.1.9 → paddle-1.1.10}/docker/Dockerfile.cuda +0 -0
  19. {paddle-1.1.9 → paddle-1.1.10}/docker/entrypoint.sh +0 -0
  20. {paddle-1.1.9 → paddle-1.1.10}/docker/nvim/init.lua +0 -0
  21. {paddle-1.1.9 → paddle-1.1.10}/docker/nvim/lua/plugins.lua +0 -0
  22. {paddle-1.1.9 → paddle-1.1.10}/docker/requirements.txt +0 -0
  23. {paddle-1.1.9 → paddle-1.1.10}/docker/scripts/git-done +0 -0
  24. {paddle-1.1.9 → paddle-1.1.10}/docker/scripts/git-send +0 -0
  25. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/crm.py +0 -0
  26. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/evolve_kinetics.py +0 -0
  27. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/find_init_params.py +0 -0
  28. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/nc2pt.py +0 -0
  29. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/pt2nc.py +0 -0
  30. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/setup_profile.py +0 -0
  31. {paddle-1.1.9 → paddle-1.1.10}/src/paddle/write_profile.py +0 -0
  32. {paddle-1.1.9 → paddle-1.1.10}/tests/.gitignore +0 -0
  33. {paddle-1.1.9 → paddle-1.1.10}/tests/data/saturn1d.yaml +0 -0
  34. {paddle-1.1.9 → paddle-1.1.10}/tests/robert.py +0 -0
  35. {paddle-1.1.9 → paddle-1.1.10}/tests/robert.yaml +0 -0
  36. {paddle-1.1.9 → paddle-1.1.10}/tests/shock.py +0 -0
  37. {paddle-1.1.9 → paddle-1.1.10}/tests/shock.yaml +0 -0
  38. {paddle-1.1.9 → paddle-1.1.10}/tests/straka.py +0 -0
  39. {paddle-1.1.9 → paddle-1.1.10}/tests/straka.yaml +0 -0
  40. {paddle-1.1.9 → paddle-1.1.10}/tests/test_saturn_adiabat.py +0 -0
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.1.9
2
+ current_version = 1.1.10
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.10
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
@@ -0,0 +1,6 @@
1
+ services:
2
+ dev:
3
+ volumes:
4
+ # This is your main working directory
5
+ # (lhs:rhs, lhs = workspace on physical machine : rhs = virtual machine)
6
+ - path_to_physical_directory/paddle_docker_workspace:/paddle_docker_workspace
@@ -13,7 +13,7 @@ services:
13
13
  - USER_GID=${USER_GID}
14
14
  # This is volatile
15
15
  # Make sure that you use override.yaml for permanent changes
16
- working_dir: /work
16
+ working_dir: /paddle_docker_workspace
17
17
  tty: true
18
18
  stdin_open: true
19
19
  ports:
@@ -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.10"
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"
@@ -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.10"
@@ -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
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