jijzept-sdk 2025.4.27__tar.gz → 2025.5.7__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 (18) hide show
  1. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/.github/workflows/weekly_release.yaml +4 -1
  2. {jijzept_sdk-2025.4.27/src/jijzept_sdk.egg-info → jijzept_sdk-2025.5.7}/PKG-INFO +1 -1
  3. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk/_version.py +2 -2
  4. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7/src/jijzept_sdk.egg-info}/PKG-INFO +1 -1
  5. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/.github/workflows/update_dependencies.yaml +0 -0
  6. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/.gitignore +0 -0
  7. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/PyPI.md +0 -0
  8. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/README.md +0 -0
  9. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/pyproject.toml +0 -0
  10. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/setup.cfg +0 -0
  11. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk/__init__.py +0 -0
  12. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk/__main__.py +0 -0
  13. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk.egg-info/SOURCES.txt +0 -0
  14. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk.egg-info/dependency_links.txt +0 -0
  15. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk.egg-info/entry_points.txt +0 -0
  16. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk.egg-info/requires.txt +0 -0
  17. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/src/jijzept_sdk.egg-info/top_level.txt +0 -0
  18. {jijzept_sdk-2025.4.27 → jijzept_sdk-2025.5.7}/update_dependencies.py +0 -0
@@ -14,8 +14,11 @@ jobs:
14
14
  - uses: actions/setup-python@v5
15
15
  with:
16
16
  python-version: ${{ matrix.python-version }}
17
+ # pip 25.1系で依存関係が解決できなくなったため、pipのバージョンを抑えている
17
18
  - name: Install Dependencies
18
- run: pip install ".[all]"
19
+ run: |
20
+ python -m pip install --upgrade pip==25.0
21
+ python -m pip install ".[all]"
19
22
  notify:
20
23
  needs: [check_dependencies]
21
24
  if: ${{ failure() }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jijzept_sdk
3
- Version: 2025.4.27
3
+ Version: 2025.5.7
4
4
  Summary: Free development kit provided by JijZept.
5
5
  Author-email: "Jij Inc." <info@j-ij.com>
6
6
  Classifier: Operating System :: POSIX :: Linux
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '2025.4.27'
21
- __version_tuple__ = version_tuple = (2025, 4, 27)
20
+ __version__ = version = '2025.5.7'
21
+ __version_tuple__ = version_tuple = (2025, 5, 7)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jijzept_sdk
3
- Version: 2025.4.27
3
+ Version: 2025.5.7
4
4
  Summary: Free development kit provided by JijZept.
5
5
  Author-email: "Jij Inc." <info@j-ij.com>
6
6
  Classifier: Operating System :: POSIX :: Linux
File without changes