Skip to content

Commit 1cfcc38

Browse files
committed
Update to allow python as early as 3.6
1 parent 8d97416 commit 1cfcc38

6 files changed

Lines changed: 68 additions & 15 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.8]
13+
python-version: [3.6, 3.7, 3.8]
1414
poetry-version: [1.1.6]
1515
fail-fast: false
1616

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
# *dbml_sqlite*
55

6-
**v0.2.1**
6+
**v0.2.2**
77

88
This is a simple package built on top of [the PyDBML package by Vanderhoof](https://github.com/Vanderhoof/PyDBML). It allows you, within certain constraints, to generate valid SQLite from `.dbml` files for your Python programs.
99

1010
## Installation
1111

12-
You'll need Python 3.x.
12+
You'll need Python 3.6 or higher.
1313

1414
```
1515
pip install dbml_sqlite
7.42 KB
Binary file not shown.

dist/DBML_SQLite-0.2.2.tar.gz

5.86 KB
Binary file not shown.

poetry.lock

Lines changed: 63 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "DBML_SQLite"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "A package that provides a CLI tool and a functional API for converting dbml files to SQLite DDL."
55
authors = ["Dave VanderWeele <weele.me@gmail.com>"]
66
repository = 'https://github.com/dvanderweele/DBML_SQLite'
77
documentation = 'https://github.com/dvanderweele/DBML_SQLite/blob/main/README.md'
88
keywords = ['dbml', 'sqlite', 'ddl']
99

1010
[tool.poetry.dependencies]
11-
python = "^3.8"
11+
python = "^3.6"
1212
pydbml = "^0.3.4"
1313
click = "^8.0.0"
1414

0 commit comments

Comments
 (0)