8000 Release v1.0.3rc1 (#1094) · sanchezg/PyMySQL@d0c2871 · GitHub
[go: up one dir, main page]

Skip to content

Commit d0c2871

Browse files
authored
Release v1.0.3rc1 (PyMySQL#1094)
1 parent adff5ee commit d0c2871

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pymysql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
)
4848

4949

50-
VERSION = (1, 0, 2, None)
50+
VERSION = (1, 0, 3, "rc1")
5151
if VERSION[3] is not None:
5252
VERSION_STRING = "%d.%d.%d_%s" % VERSION
5353
else:

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[project]
22
name = "PyMySQL"
3-
version = "1.0.2"
43
description = "Pure Python MySQL Driver"
54
authors = [
65
{name = "Inada Naoki", email = "songofacandy@gmail.com"},
@@ -26,6 +25,7 @@ classifiers = [
2625
"License :: OSI Approved :: MIT License",
2726
"Topic :: Database",
2827
]
28+
dynamic = ["version"]
2929

3030
[project.optional-dependencies]
3131
"rsa" = [
@@ -47,3 +47,6 @@ build-backend = "setuptools.build_meta"
4747
namespaces = false
4848
include = ["pymysql"]
4949
exclude = ["tests*", "pymysql.tests*"]
50+
51+
[tool.setuptools.dynamic]
52+
version = {attr = "pymysql.VERSION"}

0 commit comments

Comments
 (0)
0