paddle 1.1.10__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.
- {paddle-1.1.10 → paddle-1.1.11}/.bumpversion.cfg +1 -1
- {paddle-1.1.10 → paddle-1.1.11}/PKG-INFO +1 -1
- {paddle-1.1.10 → paddle-1.1.11}/docker/Dockerfile +1 -0
- paddle-1.1.11/docker-compose.override.yaml.tmp +16 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker-compose.yaml +2 -4
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/__init__.py +1 -1
- {paddle-1.1.10 → paddle-1.1.11}/pyproject.toml +1 -1
- paddle-1.1.10/docker-compose.override.yaml.tmp +0 -6
- {paddle-1.1.10 → paddle-1.1.11}/.github/workflows/bump-and-tag.yaml +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/.github/workflows/cd.yml +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/.github/workflows/ci.yml +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/.gitignore +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/.pre-commit-config.yaml +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/LICENSE +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/Makefile +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/README.md +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/.dockerignore +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/Dockerfile.cuda +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/entrypoint.sh +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/nvim/init.lua +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/nvim/lua/plugins.lua +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/requirements.txt +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/scripts/git-done +0 -0
- {paddle-1.1.10 → paddle-1.1.11}/docker/scripts/git-send +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/.gitignore +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/data/saturn1d.yaml +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/robert.py +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/robert.yaml +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/shock.py +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/shock.yaml +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/straka.py +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/straka.yaml +0 -0
- {paddle-1.1.10/tests → paddle-1.1.11/example_py_scripts}/test_saturn_adiabat.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/crm.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/evolve_kinetics.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/find_init_params.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/nc2pt.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/pt2nc.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/setup_profile.py +0 -0
- {paddle-1.1.10/src → paddle-1.1.11}/paddle/write_profile.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paddle
|
|
3
|
-
Version: 1.1.
|
|
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
|
|
@@ -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
|
-
|
|
15
|
-
# Make sure that you use override.yaml for permanent changes
|
|
16
|
-
working_dir: /paddle_docker_workspace
|
|
14
|
+
working_dir: /workspace
|
|
17
15
|
tty: true
|
|
18
16
|
stdin_open: true
|
|
19
17
|
ports:
|
|
20
|
-
- "8888:8888"
|
|
18
|
+
- "8888:8888"
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "paddle"
|
|
7
|
-
version = "1.1.
|
|
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"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|