ras-commander 0.1.2__tar.gz → 0.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.
- {ras_commander-0.1.2 → ras_commander-0.1.6}/.github/workflows/publish-to-pypi.yml +5 -7
- {ras_commander-0.1.2/ras_commander.egg-info → ras_commander-0.1.6}/PKG-INFO +1 -1
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/_version.py +2 -2
- {ras_commander-0.1.2 → ras_commander-0.1.6/ras_commander.egg-info}/PKG-INFO +1 -1
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander.egg-info/SOURCES.txt +0 -11
- ras_commander-0.1.2/ras_commander/__pycache__/__init__.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/execution.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/file_operations.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/geometry_operations.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/plan_operations.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/project_config.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/project_init.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/project_management.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/project_setup.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/unsteady_operations.cpython-311.pyc +0 -0
- ras_commander-0.1.2/ras_commander/__pycache__/utilities.cpython-311.pyc +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/LICENSE +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/README.md +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/dss_commander/README.md +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/hdf_commander/README.md +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/pyproject.toml +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras-commander library examples.ipynb +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/__init__.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/execution.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/file_operations.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/geometry_operations.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/plan_operations.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/project_config.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/project_init.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/project_management.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/project_setup.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/unsteady_operations.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander/utilities.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander workspace.code-workspace +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander.egg-info/dependency_links.txt +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/ras_commander.egg-info/top_level.txt +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/setup.cfg +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/setup.py +0 -0
- {ras_commander-0.1.2 → ras_commander-0.1.6}/tests/unit tests.txt +0 -0
@@ -9,20 +9,18 @@ permissions:
|
|
9
9
|
contents: read
|
10
10
|
|
11
11
|
jobs:
|
12
|
-
|
12
|
+
build_and_publish:
|
13
13
|
runs-on: ubuntu-latest
|
14
14
|
|
15
|
-
strategy:
|
16
|
-
matrix:
|
17
|
-
python-version: ["3.9", "3.10", "3.11"]
|
18
|
-
|
19
15
|
steps:
|
20
16
|
- uses: actions/checkout@v4
|
17
|
+
with:
|
18
|
+
fetch-depth: 0 # This ensures all tags are fetched
|
21
19
|
|
22
|
-
- name: Set up Python
|
20
|
+
- name: Set up Python
|
23
21
|
uses: actions/setup-python@v5
|
24
22
|
with:
|
25
|
-
python-version:
|
23
|
+
python-version: "3.11" # Use the latest supported version
|
26
24
|
|
27
25
|
- name: Display Python version and environment info
|
28
26
|
run: |
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ras_commander
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: A library for automating HEC-RAS operations using python functions.
|
5
5
|
Author-email: "William Katzenmeyer, P.E., C.F.M." <heccommander@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/yourusername/ras_commander
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ras_commander
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: A library for automating HEC-RAS operations using python functions.
|
5
5
|
Author-email: "William Katzenmeyer, P.E., C.F.M." <heccommander@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/yourusername/ras_commander
|
@@ -24,15 +24,4 @@ ras_commander.egg-info/PKG-INFO
|
|
24
24
|
ras_commander.egg-info/SOURCES.txt
|
25
25
|
ras_commander.egg-info/dependency_links.txt
|
26
26
|
ras_commander.egg-info/top_level.txt
|
27
|
-
ras_commander/__pycache__/__init__.cpython-311.pyc
|
28
|
-
ras_commander/__pycache__/execution.cpython-311.pyc
|
29
|
-
ras_commander/__pycache__/file_operations.cpython-311.pyc
|
30
|
-
ras_commander/__pycache__/geometry_operations.cpython-311.pyc
|
31
|
-
ras_commander/__pycache__/plan_operations.cpython-311.pyc
|
32
|
-
ras_commander/__pycache__/project_config.cpython-311.pyc
|
33
|
-
ras_commander/__pycache__/project_init.cpython-311.pyc
|
34
|
-
ras_commander/__pycache__/project_management.cpython-311.pyc
|
35
|
-
ras_commander/__pycache__/project_setup.cpython-311.pyc
|
36
|
-
ras_commander/__pycache__/unsteady_operations.cpython-311.pyc
|
37
|
-
ras_commander/__pycache__/utilities.cpython-311.pyc
|
38
27
|
tests/unit tests.txt
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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
|