excel-to-sql

Version Command

Show version information

Usage

Display the currently installed version of excel-to-sql. Useful when debugging or verifying installations.

excel-to-sql version

Output

The command returns the version number in a simple format for easy parsing by scripts.

excel-to-sql v0.4.1

Check 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.1

Check Installed Package

Get detailed information about the installed package including dependencies and metadata.

pip show excel-to-sql

Output:

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-sql

Or with uv:

uv pip install --upgrade excel-to-sql

Version Compatibility

All versions require Python 3.10 or higher. Features vary by version as shown in the table below.

VersionPythonFeatures
0.4.13.10+Version bug fix
0.4.03.10+French header detection
0.3.03.10+Auto-Pilot mode
0.2.03.10+Transformations, validation
0.1.03.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

On this page