Password-Generator-Advanced 1.0.2__tar.gz → 1.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.
@@ -1,13 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Password-Generator-Advanced
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Secure command-line password generator with strict cryptographic constraints. Interactive menu and CLI modes. Passphrase generation. Entropy evaluation. Cross-platform clipboard support.
5
5
  License-File: LICENSE
6
6
  Author: valorisa
7
- Requires-Python: >=3.12,<4.0
7
+ Requires-Python: >=3.14,<4.0
8
8
  Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.12
10
- Classifier: Programming Language :: Python :: 3.13
11
9
  Classifier: Programming Language :: Python :: 3.14
12
10
  Description-Content-Type: text/markdown
13
11
 
@@ -15,6 +13,8 @@ Description-Content-Type: text/markdown
15
13
 
16
14
  > 🇫🇷 Version française | 🇺🇸 [English version](README.en.md)
17
15
 
16
+ [![CI](https://github.com/valorisa/Password-Generator-Advanced/actions/workflows/ci.yml/badge.svg)](https://github.com/valorisa/Password-Generator-Advanced/actions/workflows/ci.yml)
17
+ [![PyPI version](https://img.shields.io/pypi/v/Password-Generator-Advanced.svg)](https://pypi.org/project/Password-Generator-Advanced/)
18
18
  ![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)
19
19
  ![Python 3.12+](https://img.shields.io/badge/Python-3.12%2B-3776AB.svg?logo=python&logoColor=white)
20
20
  ![Security: secrets](https://img.shields.io/badge/Security-secrets%20module-green.svg)
@@ -2,6 +2,8 @@
2
2
 
3
3
  > 🇫🇷 Version française | 🇺🇸 [English version](README.en.md)
4
4
 
5
+ [![CI](https://github.com/valorisa/Password-Generator-Advanced/actions/workflows/ci.yml/badge.svg)](https://github.com/valorisa/Password-Generator-Advanced/actions/workflows/ci.yml)
6
+ [![PyPI version](https://img.shields.io/pypi/v/Password-Generator-Advanced.svg)](https://pypi.org/project/Password-Generator-Advanced/)
5
7
  ![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)
6
8
  ![Python 3.12+](https://img.shields.io/badge/Python-3.12%2B-3776AB.svg?logo=python&logoColor=white)
7
9
  ![Security: secrets](https://img.shields.io/badge/Security-secrets%20module-green.svg)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "Password-Generator-Advanced"
3
- version = "1.0.2"
3
+ version = "1.0.3"
4
4
  description = "Secure command-line password generator with strict cryptographic constraints. Interactive menu and CLI modes. Passphrase generation. Entropy evaluation. Cross-platform clipboard support."
5
5
  authors = ["valorisa"]
6
6
  readme = "README.md"
@@ -10,11 +10,11 @@ packages = [{include = "password_generator_advanced", from = "src"}]
10
10
  password-generator-advanced = "password_generator_advanced.__main__:main"
11
11
 
12
12
  [tool.poetry.dependencies]
13
- python = "^3.12"
13
+ python = "^3.14"
14
14
 
15
15
  [tool.poetry.group.dev.dependencies]
16
16
  ruff = ">=0.3,<0.16"
17
- pytest = "^8.0.0"
17
+ pytest = ">=8,<10"
18
18
 
19
19
  [build-system]
20
20
  requires = ["poetry-core"]