Version Command
Show version information
Usage
Display the currently installed version of excel-to-sql. Useful when debugging or verifying installations.
excel-to-sql versionOutput
The command returns the version number in a simple format for easy parsing by scripts.
excel-to-sql v0.4.1Check Version in Python
You can also check the version programmatically from within Python code.
import excel_to_sql
print(excel_to_sql.__version__)
# Output: 0.4.1Check Installed Package
Get detailed information about the installed package including dependencies and metadata.
pip show excel-to-sqlOutput:
Name: excel-to-sql
Version: 0.4.1
Summary: CLI tool and Python SDK for importing Excel files to SQLite
...Version History
Detailed release notes and breaking changes are documented in the changelog.
See Changelog for version history and release notes.
Update to Latest Version
Keep your installation up to date to benefit from bug fixes and new features.
pip install --upgrade excel-to-sqlOr with uv:
uv pip install --upgrade excel-to-sqlVersion Compatibility
All versions require Python 3.10 or higher. Features vary by version as shown in the table below.
| Version | Python | Features |
|---|---|---|
| 0.4.1 | 3.10+ | Version bug fix |
| 0.4.0 | 3.10+ | French header detection |
| 0.3.0 | 3.10+ | Auto-Pilot mode |
| 0.2.0 | 3.10+ | Transformations, validation |
| 0.1.0 | 3.10+ | Initial release |
Report Issues
When reporting bugs, provide comprehensive information to help reproduce and diagnose the issue.
Found a bug? Report it at: https://github.com/wareflowx/excel-to-sql/issues
Include:
- excel-to-sql version
- Python version
- Operating system
- Error message
- Steps to reproduce