PyChannel 0.1.0__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.
- {pychannel-0.1.0 → pychannel-0.1.3}/PKG-INFO +4 -2
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel.egg-info/PKG-INFO +4 -2
- {pychannel-0.1.0 → pychannel-0.1.3}/pyproject.toml +5 -3
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel/__init__.py +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel/buffer.py +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel/channel.py +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel/global_logs.py +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel/task.py +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel.egg-info/SOURCES.txt +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel.egg-info/dependency_links.txt +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel.egg-info/requires.txt +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/PyChannel.egg-info/top_level.txt +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/README.md +0 -0
- {pychannel-0.1.0 → pychannel-0.1.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyChannel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A Python concurrency library inspired by Go's goroutines and channels
|
|
5
5
|
Author: Brayan
|
|
6
6
|
Keywords: concurrency,channels,goroutines,parallelism,multiprocessing
|
|
@@ -11,8 +11,10 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
16
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
|
-
Requires-Python:
|
|
17
|
+
Requires-Python: >=3.10
|
|
16
18
|
Description-Content-Type: text/markdown
|
|
17
19
|
Requires-Dist: loky<4,>=3.5.6
|
|
18
20
|
Provides-Extra: dev
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyChannel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A Python concurrency library inspired by Go's goroutines and channels
|
|
5
5
|
Author: Brayan
|
|
6
6
|
Keywords: concurrency,channels,goroutines,parallelism,multiprocessing
|
|
@@ -11,8 +11,10 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
16
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
|
-
Requires-Python:
|
|
17
|
+
Requires-Python: >=3.10
|
|
16
18
|
Description-Content-Type: text/markdown
|
|
17
19
|
Requires-Dist: loky<4,>=3.5.6
|
|
18
20
|
Provides-Extra: dev
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "PyChannel"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "A Python concurrency library inspired by Go's goroutines and channels"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.10
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "Brayan" }
|
|
13
13
|
]
|
|
@@ -26,6 +26,8 @@ classifiers = [
|
|
|
26
26
|
"Programming Language :: Python :: 3.10",
|
|
27
27
|
"Programming Language :: Python :: 3.11",
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Programming Language :: Python :: 3.13",
|
|
30
|
+
"Programming Language :: Python :: 3.14",
|
|
29
31
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
30
32
|
]
|
|
31
33
|
dependencies = [
|
|
@@ -45,4 +47,4 @@ include = ["PyChannel*"]
|
|
|
45
47
|
|
|
46
48
|
[tool.pytest.ini_options]
|
|
47
49
|
testpaths = ["tests"]
|
|
48
|
-
addopts = "-ra"
|
|
50
|
+
addopts = "-ra"
|
|
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
|