pyipcnode 0.1.2__tar.gz → 0.1.3__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 (23) hide show
  1. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/PKG-INFO +1 -1
  2. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/pyproject.toml +2 -1
  3. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/cmake/ipcnode/ipcnode-config-version.cmake +3 -3
  4. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/ipcnode.lib +0 -0
  5. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/ipcnode_d.lib +0 -0
  6. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode_core.cp314-win_amd64.pyd +0 -0
  7. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode.egg-info/PKG-INFO +1 -1
  8. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/README.md +0 -0
  9. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/setup.cfg +0 -0
  10. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/setup.py +0 -0
  11. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/__init__.py +0 -0
  12. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/include/ipcnode.hpp +0 -0
  13. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/include/ipcnode_typed.hpp +0 -0
  14. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/include/protocol.hpp +0 -0
  15. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/cmake/ipcnode/ipcnode-config.cmake +0 -0
  16. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/cmake/ipcnode/ipcnode-targets-debug.cmake +0 -0
  17. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/cmake/ipcnode/ipcnode-targets-release.cmake +0 -0
  18. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode/lib/cmake/ipcnode/ipcnode-targets.cmake +0 -0
  19. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/ipcnode_core.pyi +0 -0
  20. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode/typed.py +0 -0
  21. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode.egg-info/SOURCES.txt +0 -0
  22. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode.egg-info/dependency_links.txt +0 -0
  23. {pyipcnode-0.1.2 → pyipcnode-0.1.3}/src/pyipcnode.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyipcnode
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Peer-to-peer method calls between Python processes on the same machine.
5
5
  Requires-Python: ==3.14.*
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyipcnode"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "Peer-to-peer method calls between Python processes on the same machine."
5
5
  readme = "README.md"
6
6
  requires-python = "==3.14.*"
@@ -12,6 +12,7 @@ build-backend = "setuptools.build_meta"
12
12
 
13
13
  [tool.setuptools.packages.find]
14
14
  where = ["src"]
15
+ namespaces = false
15
16
 
16
17
  [tool.setuptools.package-data]
17
18
  "*" = ["*.pyd", "*.so", "*.dylib", "*.pyi", "ipcnode/**/*"]
@@ -9,19 +9,19 @@
9
9
  # The variable CVF_VERSION must be set before calling configure_file().
10
10
 
11
11
 
12
- set(PACKAGE_VERSION "0.1.2")
12
+ set(PACKAGE_VERSION "0.1.3")
13
13
 
14
14
  if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
15
15
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
16
16
  else()
17
17
 
18
- if("0.1.2" MATCHES "^([0-9]+)\\.")
18
+ if("0.1.3" MATCHES "^([0-9]+)\\.")
19
19
  set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
20
20
  if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
21
21
  string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
22
22
  endif()
23
23
  else()
24
- set(CVF_VERSION_MAJOR "0.1.2")
24
+ set(CVF_VERSION_MAJOR "0.1.3")
25
25
  endif()
26
26
 
27
27
  if(PACKAGE_FIND_VERSION_RANGE)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyipcnode
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Peer-to-peer method calls between Python processes on the same machine.
5
5
  Requires-Python: ==3.14.*
6
6
  Description-Content-Type: text/markdown
File without changes
File without changes
File without changes