multiregex 2.0.2__tar.gz → 2.0.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 (37) hide show
  1. {multiregex-2.0.2 → multiregex-2.0.3}/.github/workflows/build.yml +4 -0
  2. {multiregex-2.0.2 → multiregex-2.0.3}/PKG-INFO +1 -1
  3. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex/__init__.py +1 -1
  4. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/PKG-INFO +1 -1
  5. {multiregex-2.0.2 → multiregex-2.0.3}/.gitattributes +0 -0
  6. {multiregex-2.0.2 → multiregex-2.0.3}/.github/CODEOWNERS +0 -0
  7. {multiregex-2.0.2 → multiregex-2.0.3}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  8. {multiregex-2.0.2 → multiregex-2.0.3}/.github/ISSUE_TEMPLATE/issue-template.md +0 -0
  9. {multiregex-2.0.2 → multiregex-2.0.3}/.github/dependabot.yml +0 -0
  10. {multiregex-2.0.2 → multiregex-2.0.3}/.github/pull_request_template.md +0 -0
  11. {multiregex-2.0.2 → multiregex-2.0.3}/.github/workflows/ci.yml +0 -0
  12. {multiregex-2.0.2 → multiregex-2.0.3}/.gitignore +0 -0
  13. {multiregex-2.0.2 → multiregex-2.0.3}/.pre-commit-config.yaml +0 -0
  14. {multiregex-2.0.2 → multiregex-2.0.3}/CHANGELOG.rst +0 -0
  15. {multiregex-2.0.2 → multiregex-2.0.3}/LICENSE +0 -0
  16. {multiregex-2.0.2 → multiregex-2.0.3}/README.md +0 -0
  17. {multiregex-2.0.2 → multiregex-2.0.3}/docs/Makefile +0 -0
  18. {multiregex-2.0.2 → multiregex-2.0.3}/docs/changelog.rst +0 -0
  19. {multiregex-2.0.2 → multiregex-2.0.3}/docs/conf.py +0 -0
  20. {multiregex-2.0.2 → multiregex-2.0.3}/docs/index.rst +0 -0
  21. {multiregex-2.0.2 → multiregex-2.0.3}/docs/make.bat +0 -0
  22. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex/py.typed +0 -0
  23. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/SOURCES.txt +0 -0
  24. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/dependency_links.txt +0 -0
  25. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/requires.txt +0 -0
  26. {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/top_level.txt +0 -0
  27. {multiregex-2.0.2 → multiregex-2.0.3}/pixi.lock +0 -0
  28. {multiregex-2.0.2 → multiregex-2.0.3}/pixi.toml +0 -0
  29. {multiregex-2.0.2 → multiregex-2.0.3}/pyproject.toml +0 -0
  30. {multiregex-2.0.2 → multiregex-2.0.3}/setup.cfg +0 -0
  31. {multiregex-2.0.2 → multiregex-2.0.3}/stubs/ahocorasick.pyi +0 -0
  32. {multiregex-2.0.2 → multiregex-2.0.3}/test_utils/__init__.py +0 -0
  33. {multiregex-2.0.2 → multiregex-2.0.3}/test_utils/cpython_test_re.py +0 -0
  34. {multiregex-2.0.2 → multiregex-2.0.3}/tests/conftest.py +0 -0
  35. {multiregex-2.0.2 → multiregex-2.0.3}/tests/test_bench.py +0 -0
  36. {multiregex-2.0.2 → multiregex-2.0.3}/tests/test_cpython_tests.py +0 -0
  37. {multiregex-2.0.2 → multiregex-2.0.3}/tests/test_multiregex.py +0 -0
@@ -40,5 +40,9 @@ jobs:
40
40
  with:
41
41
  name: artifact
42
42
  path: dist
43
+ - name: Publish package on TestPyPi
44
+ uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450
45
+ with:
46
+ repository-url: https://test.pypi.org/legacy/
43
47
  - name: Publish package on PyPi
44
48
  uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: multiregex
3
- Version: 2.0.2
3
+ Version: 2.0.3
4
4
  Summary: Quickly match many regexes against a string. Provides 2-10x speedups over naïve regex matching.
5
5
  Author-email: "QuantCo, Inc." <noreply@quantco.com>, Jonas Haag <jonas@lophus.org>
6
6
  Maintainer-email: Bela Stoyan <bela.stoyan@quantco.com>
@@ -20,7 +20,7 @@ automatically generated prematchers.
20
20
 
21
21
  import collections
22
22
  import functools
23
- import importlib
23
+ import importlib.metadata
24
24
  import re
25
25
  import warnings
26
26
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: multiregex
3
- Version: 2.0.2
3
+ Version: 2.0.3
4
4
  Summary: Quickly match many regexes against a string. Provides 2-10x speedups over naïve regex matching.
5
5
  Author-email: "QuantCo, Inc." <noreply@quantco.com>, Jonas Haag <jonas@lophus.org>
6
6
  Maintainer-email: Bela Stoyan <bela.stoyan@quantco.com>
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