restage 0.9.0__tar.gz → 0.9.1__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.
- restage-0.9.1/.github/dependabot.yml +17 -0
- {restage-0.9.0 → restage-0.9.1}/.github/workflows/pip.yml +2 -2
- {restage-0.9.0 → restage-0.9.1}/.github/workflows/wheels.yml +4 -4
- {restage-0.9.0/src/restage.egg-info → restage-0.9.1}/PKG-INFO +2 -2
- {restage-0.9.0 → restage-0.9.1}/pyproject.toml +1 -1
- {restage-0.9.0 → restage-0.9.1/src/restage.egg-info}/PKG-INFO +2 -2
- {restage-0.9.0 → restage-0.9.1}/src/restage.egg-info/SOURCES.txt +1 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage.egg-info/requires.txt +1 -1
- {restage-0.9.0 → restage-0.9.1}/.gitignore +0 -0
- {restage-0.9.0 → restage-0.9.1}/README.md +0 -0
- {restage-0.9.0 → restage-0.9.1}/setup.cfg +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/__init__.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/bifrost_choppers.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/cache.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/config/__init__.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/config/default.yaml +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/cspec_choppers.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/database.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/emulate.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/energy.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/instr.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/mcpl.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/range.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/run.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/scan.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/splitrun.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage/tables.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage.egg-info/dependency_links.txt +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage.egg-info/entry_points.txt +0 -0
- {restage-0.9.0 → restage-0.9.1}/src/restage.egg-info/top_level.txt +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_cache.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_cache_ro.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_database.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_energy.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_env_vars.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_range.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_scan.py +0 -0
- {restage-0.9.0 → restage-0.9.1}/test/test_single.py +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Please see the documentation for all configuration options:
|
|
2
|
+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
3
|
+
|
|
4
|
+
version: 2
|
|
5
|
+
updates:
|
|
6
|
+
- package-ecosystem: "github-actions" # See documentation for possible values
|
|
7
|
+
directory: "/" # Location of package manifests
|
|
8
|
+
schedule:
|
|
9
|
+
interval: "weekly"
|
|
10
|
+
- package-ecosystem: "pip"
|
|
11
|
+
directory: "/"
|
|
12
|
+
schedule:
|
|
13
|
+
interval: "daily"
|
|
14
|
+
groups:
|
|
15
|
+
python-packages:
|
|
16
|
+
patterns:
|
|
17
|
+
- "*"
|
|
@@ -18,9 +18,9 @@ jobs:
|
|
|
18
18
|
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
|
19
19
|
|
|
20
20
|
steps:
|
|
21
|
-
- uses: actions/checkout@
|
|
21
|
+
- uses: actions/checkout@v6
|
|
22
22
|
|
|
23
|
-
- uses: actions/setup-python@
|
|
23
|
+
- uses: actions/setup-python@v6
|
|
24
24
|
with:
|
|
25
25
|
python-version: ${{ matrix.python-version }}
|
|
26
26
|
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
name: Build SDist and Wheel
|
|
16
16
|
runs-on: ubuntu-latest
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v6
|
|
19
19
|
with:
|
|
20
20
|
fetch-depth: 0
|
|
21
21
|
submodules: true
|
|
@@ -26,7 +26,7 @@ jobs:
|
|
|
26
26
|
- name: Check metadata
|
|
27
27
|
run: pipx run twine check dist/*
|
|
28
28
|
|
|
29
|
-
- uses: actions/upload-artifact@
|
|
29
|
+
- uses: actions/upload-artifact@v6
|
|
30
30
|
with:
|
|
31
31
|
path: dist/*
|
|
32
32
|
|
|
@@ -42,9 +42,9 @@ jobs:
|
|
|
42
42
|
if: github.event_name == 'release' && github.event.action == 'published'
|
|
43
43
|
|
|
44
44
|
steps:
|
|
45
|
-
- uses: actions/setup-python@
|
|
45
|
+
- uses: actions/setup-python@v6
|
|
46
46
|
|
|
47
|
-
- uses: actions/download-artifact@
|
|
47
|
+
- uses: actions/download-artifact@v7
|
|
48
48
|
with:
|
|
49
49
|
name: artifact
|
|
50
50
|
path: dist
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: restage
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
4
4
|
Author-email: Gregory Tucker <gregory.tucker@ess.eu>
|
|
5
5
|
License: BSD-3-Clause
|
|
6
6
|
Classifier: License :: OSI Approved :: BSD License
|
|
@@ -17,7 +17,7 @@ Requires-Dist: zenlog>=1.1
|
|
|
17
17
|
Requires-Dist: platformdirs>=3.11
|
|
18
18
|
Requires-Dist: confuse
|
|
19
19
|
Requires-Dist: psutil>=5.9.6
|
|
20
|
-
Requires-Dist: mccode-antlr[hdf5]>=0.16.
|
|
20
|
+
Requires-Dist: mccode-antlr[hdf5]>=0.16.2
|
|
21
21
|
Provides-Extra: test
|
|
22
22
|
Requires-Dist: pytest; extra == "test"
|
|
23
23
|
Requires-Dist: chopcal>=0.4.0; extra == "test"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: restage
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
4
4
|
Author-email: Gregory Tucker <gregory.tucker@ess.eu>
|
|
5
5
|
License: BSD-3-Clause
|
|
6
6
|
Classifier: License :: OSI Approved :: BSD License
|
|
@@ -17,7 +17,7 @@ Requires-Dist: zenlog>=1.1
|
|
|
17
17
|
Requires-Dist: platformdirs>=3.11
|
|
18
18
|
Requires-Dist: confuse
|
|
19
19
|
Requires-Dist: psutil>=5.9.6
|
|
20
|
-
Requires-Dist: mccode-antlr[hdf5]>=0.16.
|
|
20
|
+
Requires-Dist: mccode-antlr[hdf5]>=0.16.2
|
|
21
21
|
Provides-Extra: test
|
|
22
22
|
Requires-Dist: pytest; extra == "test"
|
|
23
23
|
Requires-Dist: chopcal>=0.4.0; extra == "test"
|
|
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
|