diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31dc079..8dd8617 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: branches: [ main ] schedule: - cron: '0 14 * * *' - + # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 7394a26..4dd3051 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,13 +6,14 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ] description = "" homepage = "https://github.com/piotrgredowski/table2sql" license = "MIT" name = "table2sql" readme = "README.md" -version = "1.0.1" +version = "1.0.5" [tool.poetry.urls] "Bug Tracker" = "https://github.com/piotrgredowski/table2sql/issues" diff --git a/table2sql/__init__.py b/table2sql/__init__.py index 376dbb9..8174351 100644 --- a/table2sql/__init__.py +++ b/table2sql/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.0.1" +__version__ = "1.0.5" from .main import convert_table_file_to_insert_statement # noqa: F401