gsppy 3.2.8__py3-none-any.whl → 3.4.3__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gsppy
3
- Version: 3.2.8
3
+ Version: 3.4.3
4
4
  Summary: GSP (Generalized Sequence Pattern) algorithm in Python
5
5
  Project-URL: Homepage, https://github.com/jacksonpradolima/gsp-py
6
6
  Author-email: Jackson Antonio do Prado Lima <jacksonpradolima@gmail.com>
@@ -41,35 +41,42 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
41
41
  Requires-Python: >=3.10
42
42
  Requires-Dist: click>=8.0.0
43
43
  Provides-Extra: dev
44
- Requires-Dist: cython==3.2.3; extra == 'dev'
45
- Requires-Dist: hatch==1.16.2; extra == 'dev'
44
+ Requires-Dist: cython==3.2.4; extra == 'dev'
45
+ Requires-Dist: hatch==1.16.3; extra == 'dev'
46
46
  Requires-Dist: hatchling==1.28.0; extra == 'dev'
47
+ Requires-Dist: hypothesis<7.0.0,>=6.0.0; extra == 'dev'
47
48
  Requires-Dist: pylint==4.0.4; extra == 'dev'
48
- Requires-Dist: pyright==1.1.407; extra == 'dev'
49
+ Requires-Dist: pyright==1.1.408; extra == 'dev'
49
50
  Requires-Dist: pytest-benchmark==5.2.3; extra == 'dev'
50
51
  Requires-Dist: pytest-cov==7.0.0; extra == 'dev'
51
52
  Requires-Dist: pytest==9.0.2; extra == 'dev'
52
- Requires-Dist: ruff==0.14.10; extra == 'dev'
53
- Requires-Dist: tox==4.32.0; extra == 'dev'
54
- Requires-Dist: ty==0.0.8; extra == 'dev'
53
+ Requires-Dist: ruff==0.14.13; extra == 'dev'
54
+ Requires-Dist: tox==4.34.1; extra == 'dev'
55
+ Requires-Dist: ty==0.0.12; extra == 'dev'
55
56
  Provides-Extra: docs
56
57
  Requires-Dist: mkdocs-gen-files<1,>=0.5; extra == 'docs'
57
58
  Requires-Dist: mkdocs-literate-nav<1,>=0.6; extra == 'docs'
58
59
  Requires-Dist: mkdocs-material<10,>=9.5; extra == 'docs'
59
60
  Requires-Dist: mkdocs<2,>=1.6; extra == 'docs'
60
- Requires-Dist: mkdocstrings[python]<0.27,>=0.26; extra == 'docs'
61
+ Requires-Dist: mkdocstrings[python]<1.1,>=0.26; extra == 'docs'
61
62
  Provides-Extra: gpu
62
63
  Requires-Dist: cupy<14,>=11; extra == 'gpu'
63
64
  Provides-Extra: rust
64
- Requires-Dist: maturin==1.10.2; extra == 'rust'
65
+ Requires-Dist: maturin==1.11.5; extra == 'rust'
65
66
  Description-Content-Type: text/markdown
66
67
 
68
+ [![Docs](https://img.shields.io/badge/Docs-GSP--Py%20Site-3D9970?style=flat-square)](https://jacksonpradolima.github.io/gsp-py/)
67
69
  [![PyPI License](https://img.shields.io/pypi/l/gsppy.svg?style=flat-square)]()
68
- ![](https://img.shields.io/badge/python-3.10+-blue.svg)
69
70
  [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3333987.svg)](https://doi.org/10.5281/zenodo.3333987)
70
71
 
71
- [![Docs](https://img.shields.io/badge/Docs-GSP--Py%20Site-3D9970?style=flat-square)](https://jacksonpradolima.github.io/gsp-py/)
72
72
  [![PyPI Downloads](https://img.shields.io/pypi/dm/gsppy.svg?style=flat-square)](https://pypi.org/project/gsppy/)
73
+ [![PyPI version](https://badge.fury.io/py/gsppy.svg)](https://pypi.org/project/gsppy)
74
+ ![](https://img.shields.io/badge/python-3.10+-blue.svg)
75
+
76
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/jacksonpradolima/gsp-py/badge)](https://securityscorecards.dev/viewer/?uri=github.com/jacksonpradolima/gsp-py)
77
+ [![SLSA provenance](https://github.com/jacksonpradolima/gsp-py/actions/workflows/slsa-provenance.yml/badge.svg)](https://github.com/jacksonpradolima/gsp-py/actions/workflows/slsa-provenance.yml)
78
+ [![OpenSSF Best Practices](https://www.bestpractices.dev/projects/11684/badge)](https://www.bestpractices.dev/projects/11684)
79
+
73
80
  [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=jacksonpradolima_gsp-py&metric=bugs)](https://sonarcloud.io/summary/new_code?id=jacksonpradolima_gsp-py)
74
81
  [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=jacksonpradolima_gsp-py&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=jacksonpradolima_gsp-py)
75
82
  [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=jacksonpradolima_gsp-py&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=jacksonpradolima_gsp-py)
@@ -577,16 +584,34 @@ uv run ruff check .
577
584
  uv run pyright
578
585
  ```
579
586
 
587
+ ### Testing & Fuzzing
588
+
589
+ GSP-Py includes comprehensive test coverage, including property-based fuzzing tests using [Hypothesis](https://hypothesis.readthedocs.io/). These fuzzing tests automatically generate random inputs to verify algorithm invariants and discover edge cases. Run the fuzzing tests with:
590
+
591
+ ```bash
592
+ uv run pytest tests/test_gsp_fuzzing.py -v
593
+ ```
594
+
580
595
  ### General Steps:
581
596
 
582
597
  1. Fork the repository.
583
598
  2. Create a feature branch: `git checkout -b feature/my-feature`.
584
- 3. Commit your changes: `git commit -m "Add my feature."`
599
+ 3. Commit your changes using [Conventional Commits](https://www.conventionalcommits.org/) format: `git commit -m "feat: add my feature"`.
585
600
  4. Push to your branch: `git push origin feature/my-feature`.
586
601
  5. Submit a pull request to the main repository!
587
602
 
588
603
  Looking for ideas? Check out our [Planned Features](#planned-features) section.
589
604
 
605
+ ### Release Management
606
+
607
+ GSP-Py uses automated release management with [Conventional Commits](https://www.conventionalcommits.org/). When commits are merged to `main`:
608
+ - **Releases are triggered** by: `fix:` (patch), `feat:` (minor), `perf:` (patch), or `BREAKING CHANGE:` (major)
609
+ - **No release** for: `docs:`, `style:`, `refactor:`, `test:`, `build:`, `ci:`, `chore:`
610
+ - CHANGELOG.md is automatically updated with structured release notes
611
+ - Git tags and GitHub releases are created automatically
612
+
613
+ See [Release Management Guide](docs/RELEASE_MANAGEMENT.md) for details on commit message format and release process.
614
+
590
615
  ---
591
616
 
592
617
  ## 📝 License
@@ -4,8 +4,8 @@ gsppy/cli.py,sha256=W5udAPKOjlxi-c-RKcz5HW-sDgoap4ojHD87bd-X498,6583
4
4
  gsppy/gsp.py,sha256=aCtPrldVNCkwj6wwytrZzbayYKkXi9Om-3xzrHUMkLQ,15293
5
5
  gsppy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  gsppy/utils.py,sha256=KtjfDgsTwvwxIyA2KCQmgu8cFkBqQvMZN8Ct5NB60Tc,3952
7
- gsppy-3.2.8.dist-info/METADATA,sha256=1q-M_lEYy_g0iEJ8IdLJ3Rz42tuZNmjZhECVzdPrLQo,22130
8
- gsppy-3.2.8.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
- gsppy-3.2.8.dist-info/entry_points.txt,sha256=smvmcIWk424ARIGKOC_BM42hpT_SptKPcIeqs-8u8lM,41
10
- gsppy-3.2.8.dist-info/licenses/LICENSE,sha256=AlXanKSqFzo_o-87gp3Qw3XzbmnfxYy7O0xJOcQGWJo,1086
11
- gsppy-3.2.8.dist-info/RECORD,,
7
+ gsppy-3.4.3.dist-info/METADATA,sha256=MEDjLNvrLUwTNP3CvQx-vBlNNwjAS5aGmEB-tanAUL4,23839
8
+ gsppy-3.4.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
+ gsppy-3.4.3.dist-info/entry_points.txt,sha256=smvmcIWk424ARIGKOC_BM42hpT_SptKPcIeqs-8u8lM,41
10
+ gsppy-3.4.3.dist-info/licenses/LICENSE,sha256=AlXanKSqFzo_o-87gp3Qw3XzbmnfxYy7O0xJOcQGWJo,1086
11
+ gsppy-3.4.3.dist-info/RECORD,,
File without changes