Skip to content

Commit 340ff42

Browse files
committed
renew project
1 parent 8d38adb commit 340ff42

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README_release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
|edition|download|trait|check|
66
|--|--|--|--|
7-
|1.0.1|`pip install sortingx==1.0.1`|Write in Python with Typing||
7+
|1.0.2|`pip install sortingx==1.0.1`|Write in Python with Typing||
88
|1.1.1|`pip install sortingx==1.1.1`|Rely on Cython||
99
|2.0.0|`pip install sortingx==2.0.0`|Restuct with C++||
1010
|2.2.2|`pip install sortingx==2.2.2`|Rust with PyO3||

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
from setuptools import find_packages, setup
4+
from setuptools import setup
55

66
if sys.version_info < (3, 7, 0):
77
raise OSError(f'sortingx requires Python >=3.7, but yours is {sys.version}')
@@ -37,7 +37,7 @@
3737

3838
setup(
3939
name=pkg_name,
40-
packages=find_packages,
40+
packages=['sortingx'],
4141
version=__version__,
4242
description='The powerful package designed for sorting.',
4343
author='林景',

sortingx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
from .sorting import bubble, insert, shell, heap, quick, merge
1818
from ._typing import *
1919

20-
__version__ = '1.0.1'
20+
__version__ = '1.0.2'
2121

2222
assert sys.version_info >= (3, 7, 0)

0 commit comments

Comments
 (0)