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.
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/workflows/build.yml +4 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/PKG-INFO +1 -1
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex/__init__.py +1 -1
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/PKG-INFO +1 -1
- {multiregex-2.0.2 → multiregex-2.0.3}/.gitattributes +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/CODEOWNERS +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/ISSUE_TEMPLATE/issue-template.md +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/dependabot.yml +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/pull_request_template.md +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.github/workflows/ci.yml +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.gitignore +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/.pre-commit-config.yaml +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/CHANGELOG.rst +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/LICENSE +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/README.md +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/docs/Makefile +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/docs/changelog.rst +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/docs/conf.py +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/docs/index.rst +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/docs/make.bat +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex/py.typed +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/SOURCES.txt +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/dependency_links.txt +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/requires.txt +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/multiregex.egg-info/top_level.txt +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/pixi.lock +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/pixi.toml +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/pyproject.toml +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/setup.cfg +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/stubs/ahocorasick.pyi +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/test_utils/__init__.py +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/test_utils/cpython_test_re.py +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/tests/conftest.py +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/tests/test_bench.py +0 -0
- {multiregex-2.0.2 → multiregex-2.0.3}/tests/test_cpython_tests.py +0 -0
- {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.
|
|
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>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: multiregex
|
|
3
|
-
Version: 2.0.
|
|
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
|
|
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
|