mirror of
https://github.com/pacnpal/pip-add.git
synced 2026-02-05 03:55:20 -05:00
Merge pull request #3 from pacnpal/copilot/increment-version-python-3-14
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
A command-line tool that combines package installation and requirements.txt management. Install, update, or remove Python packages and their dependencies with automatic requirements.txt handling.
|
A command-line tool that combines package installation and requirements.txt management. Install, update, or remove Python packages and their dependencies with automatic requirements.txt handling.
|
||||||
|
|
||||||
Compatible with Python 3.9, 3.10, 3.11, 3.12, and 3.13.
|
Compatible with Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14.
|
||||||
|
|
||||||
[](https://codecov.io/gh/pacnpal/pip-add)
|
[](https://codecov.io/gh/pacnpal/pip-add)
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Compatible with Python 3.9, 3.10, 3.11, 3.12, and 3.13.
|
|||||||
- Creates requirements.txt if it doesn't exist
|
- Creates requirements.txt if it doesn't exist
|
||||||
- Support for custom requirements file paths
|
- Support for custom requirements file paths
|
||||||
- Smart detection of multiple requirements files
|
- Smart detection of multiple requirements files
|
||||||
- Full support for Python 3.8, 3.9, 3.10, 3.11, 3.12, and 3.13
|
- Full support for Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@@ -192,7 +192,7 @@ The tool is designed to safely handle dependencies:
|
|||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- Python 3.11, 3.12, or 3.13
|
- Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, or 3.14
|
||||||
- pip
|
- pip
|
||||||
- setuptools
|
- setuptools
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from .cli import main
|
from .cli import main
|
||||||
from .utils import find_requirements, add_to_requirements
|
from .utils import find_requirements, add_to_requirements
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.2.6"
|
||||||
__all__ = ['main', 'find_requirements', 'add_to_requirements']
|
__all__ = ['main', 'find_requirements', 'add_to_requirements']
|
||||||
Reference in New Issue
Block a user