28 lines
760 B
Diff
28 lines
760 B
Diff
|
|
From b0fa876059f4e9768ed7b85e58a40ab7673b27c8 Mon Sep 17 00:00:00 2001
|
||
|
|
From: wang--ge <wang__ge@126.com>
|
||
|
|
Date: Tue, 7 Feb 2023 18:00:00 +0800
|
||
|
|
Subject: [PATCH] rollback setuptools-scm versioning
|
||
|
|
|
||
|
|
---
|
||
|
|
aiomysql/__init__.py | 3 +--
|
||
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/aiomysql/__init__.py b/aiomysql/__init__.py
|
||
|
|
index a367fcd..a412281 100644
|
||
|
|
--- a/aiomysql/__init__.py
|
||
|
|
+++ b/aiomysql/__init__.py
|
||
|
|
@@ -32,9 +32,8 @@ from pymysql.err import (Warning, Error, InterfaceError, DataError,
|
||
|
|
from .connection import Connection, connect
|
||
|
|
from .cursors import Cursor, SSCursor, DictCursor, SSDictCursor
|
||
|
|
from .pool import create_pool, Pool
|
||
|
|
-from ._version import version
|
||
|
|
|
||
|
|
-__version__ = version
|
||
|
|
+__version__ = '0.1.0'
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
|
||
|
|
--
|
||
|
|
2.27.0
|
||
|
|
|