Skip to content

Commit

Permalink
Release v1.0.3rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Mar 23, 2023
1 parent adff5ee commit d8f1aa6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pymysql/__init__.py
Expand Up @@ -47,7 +47,7 @@
)


VERSION = (1, 0, 2, None)
VERSION = (1, 0, 3, "rc1")
if VERSION[3] is not None:
VERSION_STRING = "%d.%d.%d_%s" % VERSION
else:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
@@ -1,6 +1,5 @@
[project]
name = "PyMySQL"
version = "1.0.2"
description = "Pure Python MySQL Driver"
authors = [
{name = "Inada Naoki", email = "songofacandy@gmail.com"},
Expand All @@ -26,6 +25,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Database",
]
dynamic = ["version"]

[project.optional-dependencies]
"rsa" = [
Expand All @@ -47,3 +47,6 @@ build-backend = "setuptools.build_meta"
namespaces = false
include = ["pymysql"]
exclude = ["tests*", "pymysql.tests*"]

[tool.setuptools.dynamic]
version = {attr = "pymysql.VERSION"}

0 comments on commit d8f1aa6

Please sign in to comment.