paddle 1.1.5__tar.gz → 1.1.6__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 (31) hide show
  1. {paddle-1.1.5 → paddle-1.1.6}/.bumpversion.cfg +1 -1
  2. {paddle-1.1.5 → paddle-1.1.6}/PKG-INFO +28 -12
  3. {paddle-1.1.5 → paddle-1.1.6}/README.md +26 -10
  4. {paddle-1.1.5 → paddle-1.1.6}/pyproject.toml +2 -2
  5. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/__init__.py +1 -1
  6. {paddle-1.1.5 → paddle-1.1.6}/.github/workflows/bump-and-tag.yaml +0 -0
  7. {paddle-1.1.5 → paddle-1.1.6}/.github/workflows/cd.yml +0 -0
  8. {paddle-1.1.5 → paddle-1.1.6}/.github/workflows/ci.yml +0 -0
  9. {paddle-1.1.5 → paddle-1.1.6}/.gitignore +0 -0
  10. {paddle-1.1.5 → paddle-1.1.6}/.pre-commit-config.yaml +0 -0
  11. {paddle-1.1.5 → paddle-1.1.6}/LICENSE +0 -0
  12. {paddle-1.1.5 → paddle-1.1.6}/Makefile +0 -0
  13. {paddle-1.1.5 → paddle-1.1.6}/docker/.dockerignore +0 -0
  14. {paddle-1.1.5 → paddle-1.1.6}/docker/Dockerfile +0 -0
  15. {paddle-1.1.5 → paddle-1.1.6}/docker/entrypoint.sh +0 -0
  16. {paddle-1.1.5 → paddle-1.1.6}/docker/nvim/init.lua +0 -0
  17. {paddle-1.1.5 → paddle-1.1.6}/docker/nvim/lua/plugins.lua +0 -0
  18. {paddle-1.1.5 → paddle-1.1.6}/docker/scripts/git-done +0 -0
  19. {paddle-1.1.5 → paddle-1.1.6}/docker/scripts/git-send +0 -0
  20. {paddle-1.1.5 → paddle-1.1.6}/docker-compose.override.yaml +0 -0
  21. {paddle-1.1.5 → paddle-1.1.6}/docker-compose.yaml +0 -0
  22. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/crm.py +0 -0
  23. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/evolve_kinetics.py +0 -0
  24. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/find_init_params.py +0 -0
  25. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/nc2pt.py +0 -0
  26. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/pt2nc.py +0 -0
  27. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/setup_profile.py +0 -0
  28. {paddle-1.1.5 → paddle-1.1.6}/src/paddle/write_profile.py +0 -0
  29. {paddle-1.1.5 → paddle-1.1.6}/tests/.gitignore +0 -0
  30. {paddle-1.1.5 → paddle-1.1.6}/tests/data/saturn1d.yaml +0 -0
  31. {paddle-1.1.5 → paddle-1.1.6}/tests/test_saturn_adiabat.py +0 -0
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.1.5
2
+ current_version = 1.1.6
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.5
3
+ Version: 1.1.6
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
@@ -23,7 +23,7 @@ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
23
23
  Classifier: Topic :: Scientific/Engineering :: Physics
24
24
  Requires-Python: >=3.9
25
25
  Requires-Dist: kintera>=1.1.5
26
- Requires-Dist: snapy>=0.8.2
26
+ Requires-Dist: snapy>=0.8.1
27
27
  Requires-Dist: torch<=2.7.1,>=2.7.0
28
28
  Provides-Extra: dev
29
29
  Requires-Dist: pytest>=7; extra == 'dev'
@@ -34,42 +34,58 @@ Python Atmospheric Dynamics: Discovering and Learning about Exoplanets. An open-
34
34
 
35
35
  ## Install docker and docker-compose plugin
36
36
 
37
-
38
- ## Create a python virtual environment
37
+ ## Test package
38
+ 1. Create a python virtual environment
39
39
  ```bash
40
40
  python -m venv pyenv
41
41
  ```
42
42
 
43
- # Create a docker container
43
+ 2. Install paddle package
44
+ ```bash
45
+ pip install paddle
46
+ ```
47
+
48
+ 3. Run test
49
+ ```bash
50
+ cd tests
51
+ python test_saturn_adiabat.py
52
+ ```
53
+
54
+ ## Docker user guide
55
+
56
+ 2. Create a docker container
44
57
  ```bash
45
58
  make up
46
59
  ```
47
60
 
48
- # Terminate a docker container
61
+ 3. Terminate a docker container
49
62
  ```bash
50
63
  make down
51
64
  ```
52
65
 
53
- # Start a docker container
66
+ 4. Start a docker container
54
67
  ```bash
55
68
  make start
56
69
  ```
57
70
 
58
- # Build a new docker image (rarely used)
71
+ 5. Build a new docker image (rarely used)
59
72
  ```bash
60
73
  make build
61
74
  ```
62
75
 
63
- ## For Development
76
+ ## For Developer
77
+
78
+ ### Clone repository
79
+ ```bash
80
+ https://github.com/elijah-mullens/paddle
81
+ ```
82
+
64
83
  ### Cache your github credential
65
84
  ```bash
66
85
  git config credential.helper 'cache --timeout=86400'
67
86
  ```
68
87
 
69
88
  ### Install paddle package
70
- ```bash
71
- pip install paddle
72
- ```
73
89
 
74
90
  ### Install pre-commit hook
75
91
  ```bash
@@ -3,42 +3,58 @@ Python Atmospheric Dynamics: Discovering and Learning about Exoplanets. An open-
3
3
 
4
4
  ## Install docker and docker-compose plugin
5
5
 
6
-
7
- ## Create a python virtual environment
6
+ ## Test package
7
+ 1. Create a python virtual environment
8
8
  ```bash
9
9
  python -m venv pyenv
10
10
  ```
11
11
 
12
- # Create a docker container
12
+ 2. Install paddle package
13
+ ```bash
14
+ pip install paddle
15
+ ```
16
+
17
+ 3. Run test
18
+ ```bash
19
+ cd tests
20
+ python test_saturn_adiabat.py
21
+ ```
22
+
23
+ ## Docker user guide
24
+
25
+ 2. Create a docker container
13
26
  ```bash
14
27
  make up
15
28
  ```
16
29
 
17
- # Terminate a docker container
30
+ 3. Terminate a docker container
18
31
  ```bash
19
32
  make down
20
33
  ```
21
34
 
22
- # Start a docker container
35
+ 4. Start a docker container
23
36
  ```bash
24
37
  make start
25
38
  ```
26
39
 
27
- # Build a new docker image (rarely used)
40
+ 5. Build a new docker image (rarely used)
28
41
  ```bash
29
42
  make build
30
43
  ```
31
44
 
32
- ## For Development
45
+ ## For Developer
46
+
47
+ ### Clone repository
48
+ ```bash
49
+ https://github.com/elijah-mullens/paddle
50
+ ```
51
+
33
52
  ### Cache your github credential
34
53
  ```bash
35
54
  git config credential.helper 'cache --timeout=86400'
36
55
  ```
37
56
 
38
57
  ### Install paddle package
39
- ```bash
40
- pip install paddle
41
- ```
42
58
 
43
59
  ### Install pre-commit hook
44
60
  ```bash
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "paddle"
7
- version = "1.1.5"
7
+ version = "1.1.6"
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"
@@ -33,7 +33,7 @@ classifiers = [
33
33
  dependencies = [
34
34
  "torch>=2.7.0,<=2.7.1",
35
35
  "kintera>=1.1.5",
36
- "snapy>=0.8.2",
36
+ "snapy>=0.8.1",
37
37
  ]
38
38
 
39
39
  [project.optional-dependencies]
@@ -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.5"
7
+ __version__ = "1.1.6"
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