From 55bfdf5aa27bed73c7dc1693d28e383b503468c2 Mon Sep 17 00:00:00 2001 From: Piotr Gredowski Date: Sat, 7 Aug 2021 19:40:40 +0200 Subject: [PATCH] Add classifiers for package - Update version of package also in __init__.py file. - Add Python 3.10 to CI workflow --- .github/workflows/ci.yml | 2 +- pyproject.toml | 12 ++++++++++-- table2sql/__init__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 778674c..d1efa62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,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 a61ae33..66e16ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,17 +1,25 @@ [tool.poetry] name = "table2sql" -version = "0.1.4" +version = "0.1.5" authors = ["Piotr Gredowski "] license = "MIT" readme = "README.md" description = "" homepage = "https://github.com/piotrgredowski/table2sql" +classifiers = [ + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Programming Language :: Python :: 3.6", + "Topic :: Programming Language :: Python :: 3.7", + "Topic :: Programming Language :: Python :: 3.8", + "Topic :: Programming Language :: Python :: 3.9", + "Topic :: Programming Language :: Python :: 3.10", +] [tool.poetry.urls] "Bug Tracker" = "https://github.com/piotrgredowski/table2sql/issues" [tool.poetry.dependencies] -python = ">=3.6,<4" +python = "^3.9" click = "^8.0.1" [tool.poetry.dev-dependencies] diff --git a/table2sql/__init__.py b/table2sql/__init__.py index ae73625..1276d02 100644 --- a/table2sql/__init__.py +++ b/table2sql/__init__.py @@ -1 +1 @@ -__version__ = "0.1.3" +__version__ = "0.1.5"