Skip to content

Commit 3e7d761

Browse files
committed
Fix build error
1 parent 3f1055b commit 3e7d761

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## 0.1
44

5+
### 0.1.1
6+
7+
- Fix build error.
8+
59
### 0.1.0
610

711
- Release first version.

asyncmy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "0.1.0"
1+
__VERSION__ = "0.1.1"

poetry.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "asyncmy"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A fast asyncio MySQL driver"
55
authors = ["long2ice <[email protected]>"]
66
license = "Apache-2.0"
@@ -13,7 +13,6 @@ packages = [
1313
{ include = "asyncmy" }
1414
]
1515
include = ["CHANGELOG.md", "LICENSE", "README.md"]
16-
build = "build.py"
1716

1817
[tool.poetry.dependencies]
1918
python = "^3.7"
@@ -35,6 +34,10 @@ uvloop = "*"
3534
cryptography = "*"
3635
faker = "*"
3736

37+
[tool.poetry.build]
38+
generate-setup-file = false
39+
script = "build.py"
40+
3841
[build-system]
3942
requires = ["poetry-core>=1.0.0"]
4043
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)