cwrap 1.6.9__tar.gz → 1.6.10__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 (49) hide show
  1. {cwrap-1.6.9 → cwrap-1.6.10}/.github/workflows/build.yml +1 -1
  2. {cwrap-1.6.9/src/cwrap.egg-info → cwrap-1.6.10}/PKG-INFO +3 -2
  3. cwrap-1.6.10/src/cwrap/version.py +34 -0
  4. {cwrap-1.6.9 → cwrap-1.6.10/src/cwrap.egg-info}/PKG-INFO +3 -2
  5. cwrap-1.6.9/src/cwrap/version.py +0 -16
  6. {cwrap-1.6.9 → cwrap-1.6.10}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  7. {cwrap-1.6.9 → cwrap-1.6.10}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  8. {cwrap-1.6.9 → cwrap-1.6.10}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  9. {cwrap-1.6.9 → cwrap-1.6.10}/.gitignore +0 -0
  10. {cwrap-1.6.9 → cwrap-1.6.10}/CODE_OF_CONDUCT.md +0 -0
  11. {cwrap-1.6.9 → cwrap-1.6.10}/CONTRIBUTING.md +0 -0
  12. {cwrap-1.6.9 → cwrap-1.6.10}/GPL +0 -0
  13. {cwrap-1.6.9 → cwrap-1.6.10}/LICENSE +0 -0
  14. {cwrap-1.6.9 → cwrap-1.6.10}/README.md +0 -0
  15. {cwrap-1.6.9 → cwrap-1.6.10}/SECURITY.md +0 -0
  16. {cwrap-1.6.9 → cwrap-1.6.10}/debian/README.Debian +0 -0
  17. {cwrap-1.6.9 → cwrap-1.6.10}/debian/changelog +0 -0
  18. {cwrap-1.6.9 → cwrap-1.6.10}/debian/compat +0 -0
  19. {cwrap-1.6.9 → cwrap-1.6.10}/debian/control +0 -0
  20. {cwrap-1.6.9 → cwrap-1.6.10}/debian/copyright +0 -0
  21. {cwrap-1.6.9 → cwrap-1.6.10}/debian/docs +0 -0
  22. {cwrap-1.6.9 → cwrap-1.6.10}/debian/rules +0 -0
  23. {cwrap-1.6.9 → cwrap-1.6.10}/debian/source/format +0 -0
  24. {cwrap-1.6.9 → cwrap-1.6.10}/examples/map/ex_map.c +0 -0
  25. {cwrap-1.6.9 → cwrap-1.6.10}/examples/map/ex_map.py +0 -0
  26. {cwrap-1.6.9 → cwrap-1.6.10}/examples/vecstr/ex_vecstr.c +0 -0
  27. {cwrap-1.6.9 → cwrap-1.6.10}/examples/vecstr/ex_vecstr.py +0 -0
  28. {cwrap-1.6.9 → cwrap-1.6.10}/pyproject.toml +0 -0
  29. {cwrap-1.6.9 → cwrap-1.6.10}/redhat/cwrap.spec +0 -0
  30. {cwrap-1.6.9 → cwrap-1.6.10}/requirements.txt +0 -0
  31. {cwrap-1.6.9 → cwrap-1.6.10}/setup.cfg +0 -0
  32. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/__init__.py +0 -0
  33. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/basecclass.py +0 -0
  34. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/basecenum.py +0 -0
  35. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/basecvalue.py +0 -0
  36. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/cfile.py +0 -0
  37. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/clib.py +0 -0
  38. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/metacwrap.py +0 -0
  39. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/prototype.py +0 -0
  40. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap.egg-info/SOURCES.txt +0 -0
  41. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap.egg-info/dependency_links.txt +0 -0
  42. {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap.egg-info/top_level.txt +0 -0
  43. {cwrap-1.6.9 → cwrap-1.6.10}/tests/__init__.py +0 -0
  44. {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_basecclass.py +0 -0
  45. {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_basecenum.py +0 -0
  46. {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_basecvalue.py +0 -0
  47. {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_cfile.py +0 -0
  48. {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_libc.py +0 -0
  49. {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_prototype.py +0 -0
@@ -67,7 +67,7 @@ jobs:
67
67
  python -m build
68
68
 
69
69
  - name: Publish to PyPI
70
- uses: pypa/gh-action-pypi-publish@v1.12.3
70
+ uses: pypa/gh-action-pypi-publish@v1.13.0
71
71
  with:
72
72
  user: __token__
73
73
  password: ${{ secrets.pypi_password }}
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: cwrap
3
- Version: 1.6.9
3
+ Version: 1.6.10
4
4
  Summary: cwrap - ctypes blanket
5
5
  Author-email: Equinor ASA <fg_sib-scout@equinor.com>
6
6
  License: GPL-3.0
@@ -22,6 +22,7 @@ Classifier: Topic :: Utilities
22
22
  Requires-Python: >=3.10
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
+ Dynamic: license-file
25
26
 
26
27
  # cwrap
27
28
 
@@ -0,0 +1,34 @@
1
+ # file generated by setuptools-scm
2
+ # don't change, don't track in version control
3
+
4
+ __all__ = [
5
+ "__version__",
6
+ "__version_tuple__",
7
+ "version",
8
+ "version_tuple",
9
+ "__commit_id__",
10
+ "commit_id",
11
+ ]
12
+
13
+ TYPE_CHECKING = False
14
+ if TYPE_CHECKING:
15
+ from typing import Tuple
16
+ from typing import Union
17
+
18
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
19
+ COMMIT_ID = Union[str, None]
20
+ else:
21
+ VERSION_TUPLE = object
22
+ COMMIT_ID = object
23
+
24
+ version: str
25
+ __version__: str
26
+ __version_tuple__: VERSION_TUPLE
27
+ version_tuple: VERSION_TUPLE
28
+ commit_id: COMMIT_ID
29
+ __commit_id__: COMMIT_ID
30
+
31
+ __version__ = version = '1.6.10'
32
+ __version_tuple__ = version_tuple = (1, 6, 10)
33
+
34
+ __commit_id__ = commit_id = 'gfd74d1bee'
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: cwrap
3
- Version: 1.6.9
3
+ Version: 1.6.10
4
4
  Summary: cwrap - ctypes blanket
5
5
  Author-email: Equinor ASA <fg_sib-scout@equinor.com>
6
6
  License: GPL-3.0
@@ -22,6 +22,7 @@ Classifier: Topic :: Utilities
22
22
  Requires-Python: >=3.10
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
+ Dynamic: license-file
25
26
 
26
27
  # cwrap
27
28
 
@@ -1,16 +0,0 @@
1
- # file generated by setuptools_scm
2
- # don't change, don't track in version control
3
- TYPE_CHECKING = False
4
- if TYPE_CHECKING:
5
- from typing import Tuple, Union
6
- VERSION_TUPLE = Tuple[Union[int, str], ...]
7
- else:
8
- VERSION_TUPLE = object
9
-
10
- version: str
11
- __version__: str
12
- __version_tuple__: VERSION_TUPLE
13
- version_tuple: VERSION_TUPLE
14
-
15
- __version__ = version = '1.6.9'
16
- __version_tuple__ = version_tuple = (1, 6, 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
File without changes
File without changes
File without changes
File without changes