Skip to content

Commit

Permalink
Add classifiers for package
Browse files Browse the repository at this point in the history
- Update version of package also in __init__.py file.
- Add Python 3.10 to CI workflow
  • Loading branch information
piotrgredowski committed Aug 7, 2021
1 parent 763c29d commit 55bfdf5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
[tool.poetry]
name = "table2sql"
version = "0.1.4"
version = "0.1.5"
authors = ["Piotr Gredowski <[email protected]>"]
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]
Expand Down
2 changes: 1 addition & 1 deletion table2sql/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.5"

0 comments on commit 55bfdf5

Please sign in to comment.