Skip to content

Commit

Permalink
Add python 3.10 to CI version matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrgredowski committed Jun 9, 2022
1 parent 49894a4 commit e5c9064
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ main ]
schedule:
- cron: '0 14 * * *'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion table2sql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.0.1"
__version__ = "1.0.5"

from .main import convert_table_file_to_insert_statement # noqa: F401

0 comments on commit e5c9064

Please sign in to comment.