pyrelukko 0.4.0__tar.gz → 0.5.0__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.

Potentially problematic release.


This version of pyrelukko might be problematic. Click here for more details.

Files changed (28) hide show
  1. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/PKG-INFO +3 -4
  2. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/pyproject.toml +2 -3
  3. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/src/pyrelukko/version.py +1 -1
  4. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/test_relukko.py +3 -3
  5. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/.gitlab-ci.yml +0 -0
  6. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/LICENSE +0 -0
  7. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/README.md +0 -0
  8. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/cicd/build-py-rf-image.sh +0 -0
  9. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/cicd/run_docs_pages.sh +0 -0
  10. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/cicd/run_pylint.sh +0 -0
  11. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/cicd/run_pytest.sh +0 -0
  12. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/cicd/run_shellcheck.sh +0 -0
  13. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/container/Containerfile +0 -0
  14. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/container/requirements.txt +0 -0
  15. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/src/pyrelukko/__init__.py +0 -0
  16. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/src/pyrelukko/pyrelukko.py +0 -0
  17. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/src/pyrelukko/retry.py +0 -0
  18. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/src/pyrelukko/testcontainers.py +0 -0
  19. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/5d868fca.0 +0 -0
  20. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/README.md +0 -0
  21. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/relukko.crt +0 -0
  22. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/relukko.csr +0 -0
  23. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/relukko.key +0 -0
  24. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/rootCA.crt +0 -0
  25. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/rootCA.der +0 -0
  26. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/rootCA.key +0 -0
  27. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/cert/rootCA.srl +0 -0
  28. {pyrelukko-0.4.0 → pyrelukko-0.5.0}/tests/conftest.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyrelukko
3
- Version: 0.4.0
3
+ Version: 0.5.0
4
4
  Summary: Relukko client.
5
5
  Author-email: Reto Zingg <g.d0b3rm4n@gmail.com>
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
- Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Development Status :: 4 - Beta
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Topic :: Internet :: WWW/HTTP
@@ -13,9 +13,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
- Classifier: Programming Language :: Python :: 3.14
17
16
  Requires-Dist: requests >=2.32.3
18
- Requires-Dist: websockets >= 13.1
17
+ Requires-Dist: websockets >= 14.1
19
18
  Project-URL: Homepage, https://gitlab.com/relukko/pyrelukko
20
19
  Project-URL: Issues, https://gitlab.com/relukko/pyrelukko/-/issues
21
20
 
@@ -7,7 +7,7 @@ readme = "README.md"
7
7
 
8
8
  # https://pypi.org/pypi?%3Aaction=list_classifiers
9
9
  classifiers = [
10
- "Development Status :: 3 - Alpha",
10
+ "Development Status :: 4 - Beta",
11
11
  "Intended Audience :: Developers",
12
12
  "License :: OSI Approved :: MIT License",
13
13
  "Topic :: Internet :: WWW/HTTP",
@@ -15,13 +15,12 @@ classifiers = [
15
15
  "Programming Language :: Python :: 3.11",
16
16
  "Programming Language :: Python :: 3.12",
17
17
  "Programming Language :: Python :: 3.13",
18
- "Programming Language :: Python :: 3.14",
19
18
  ]
20
19
  requires-python = ">=3.10"
21
20
  dynamic = ["version", "description"]
22
21
  dependencies = [
23
22
  "requests >=2.32.3",
24
- "websockets >= 13.1",
23
+ "websockets >= 14.1",
25
24
  ]
26
25
 
27
26
  [tool.flit.sdist]
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=all
2
- __version__ = "0.4.0"
2
+ __version__ = "0.5.0"
@@ -387,7 +387,7 @@ def test_acquire_relukko(relukko_backend):
387
387
  lock = relukko.acquire_relukko("pylock", "pytest", 30)
388
388
  end_time = time.time()
389
389
  assert lock is None
390
- assert 29 < end_time - start_time < 45
390
+ assert 29 < end_time - start_time < 37
391
391
 
392
392
 
393
393
  def test_acquire_relukko_with_del(relukko_backend):
@@ -400,12 +400,12 @@ def test_acquire_relukko_with_del(relukko_backend):
400
400
  assert id == upd_lock['id']
401
401
 
402
402
  start_time = time.time()
403
- lock = relukko.acquire_relukko("Pylock", "pytest", 90)
403
+ lock = relukko.acquire_relukko("Pylock", "pytest", 60)
404
404
  end_time = time.time()
405
405
 
406
406
  assert lock is not None
407
407
  assert upd_lock['id'] != lock['id']
408
- assert 29 < end_time - start_time < 50
408
+ assert 14 < end_time - start_time < 50
409
409
 
410
410
 
411
411
  def test_delete_relukko(relukko_backend):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes