my-PV 0.0.1.dev1__tar.gz → 0.0.1.dev3__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 (27) hide show
  1. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/PKG-INFO +1 -1
  2. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/_version.py +2 -2
  3. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/pyproject.toml +3 -1
  4. my_pv-0.0.1.dev1/.github/dependabot.yml +0 -15
  5. my_pv-0.0.1.dev1/.github/workflows/check-format.yml +0 -11
  6. my_pv-0.0.1.dev1/.github/workflows/pypi-publish.yml +0 -30
  7. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/.gitignore +0 -0
  8. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/LICENSE +0 -0
  9. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/README.md +0 -0
  10. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/__init__.py +0 -0
  11. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/000000.json +0 -0
  12. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/140100.json +0 -0
  13. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/160150.json +0 -0
  14. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/160151.json +0 -0
  15. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/160152.json +0 -0
  16. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/200100.json +0 -0
  17. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/200103.json +0 -0
  18. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/200110.json +0 -0
  19. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/200113.json +0 -0
  20. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/200300.json +0 -0
  21. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/200310.json +0 -0
  22. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/210300.json +0 -0
  23. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/210900.json +0 -0
  24. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/configs/__init__.py +0 -0
  25. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/connection.py +0 -0
  26. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/exceptions.py +0 -0
  27. {my_pv-0.0.1.dev1 → my_pv-0.0.1.dev3}/mypv/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: my-PV
3
- Version: 0.0.1.dev1
3
+ Version: 0.0.1.dev3
4
4
  Summary: Library to interface with my-PV devices.
5
5
  Project-URL: Homepage, https://my-pv.com/
6
6
  Project-URL: Repository, https://github.com/my-PV/py-mypv
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.0.1.dev1'
22
- __version_tuple__ = version_tuple = (0, 0, 1, 'dev1')
21
+ __version__ = version = '0.0.1.dev3'
22
+ __version_tuple__ = version_tuple = (0, 0, 1, 'dev3')
23
23
 
24
24
  __commit_id__ = commit_id = None
@@ -5,6 +5,9 @@ build-backend = "hatchling.build"
5
5
  [tool.hatch.build.hooks.vcs]
6
6
  version-file = "mypv/_version.py"
7
7
 
8
+ [tool.hatch.build.targets.sdist]
9
+ packages = [ "mypv" ]
10
+
8
11
  [tool.hatch.version]
9
12
  source = "vcs"
10
13
 
@@ -54,4 +57,3 @@ mypy_path = "mypv"
54
57
  [[tool.mypy.overrides]]
55
58
  module = ["*._version"]
56
59
  ignore_missing_imports = true
57
-
@@ -1,15 +0,0 @@
1
- # To get started with Dependabot version updates, you'll need to specify which
2
- # package ecosystems to update and where the package manifests are located.
3
- # Please see the documentation for all configuration options:
4
- # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
-
6
- version: 2
7
- updates:
8
- - package-ecosystem: "pip" # See documentation for possible values
9
- directory: "/" # Location of package manifests
10
- schedule:
11
- interval: "weekly"
12
- - package-ecosystem: "github-actions"
13
- directory: "/"
14
- schedule:
15
- interval: "weekly"
@@ -1,11 +0,0 @@
1
- name: Check Python code format
2
-
3
- on: [push]
4
-
5
- jobs:
6
- linter_name:
7
- name: ruff check
8
- runs-on: ubuntu-latest
9
- steps:
10
- - uses: actions/checkout@v6
11
- - uses: astral-sh/ruff-action@v3
@@ -1,30 +0,0 @@
1
- name: Publish to PyPI
2
-
3
- on:
4
- release:
5
- types: [published]
6
-
7
- jobs:
8
- deploy:
9
- runs-on: ubuntu-latest
10
- environment: pypi
11
- permissions:
12
- id-token: write # required for OIDC
13
- contents: read
14
-
15
- steps:
16
- - uses: actions/checkout@v6
17
- - name: Set up Python
18
- uses: actions/setup-python@v6
19
- with:
20
- python-version: '3.x'
21
- - name: Install dependencies
22
- run: |
23
- python -m pip install --upgrade pip
24
- pip install build
25
- - name: Build package
26
- run: python -m build
27
- - name: Publish package
28
- uses: pypa/gh-action-pypi-publish@release/v1
29
- with:
30
- print-hash: true
File without changes
File without changes
File without changes
File without changes
File without changes