Skip to content

Commit dce193f

Browse files
committed
version 1.3 upcoming
1 parent 80828ca commit dce193f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22
import pathlib
33
import sys
44

5+
from setuptools import find_packages, setup
6+
57
here = os.path.abspath(os.path.dirname(__file__))
68
src = os.path.join(here, "src/fuzzylogic")
79
sys.path.append(src)
810

9-
from setuptools import find_packages, setup
1011

1112
meta = {
1213
"name": "fuzzylogic",
1314
"description": "Fuzzy Logic for Python 3",
1415
"license": "MIT",
1516
"url": "https://github.com/amogorkon/fuzzylogic",
16-
"version": "1.2.0",
17+
"version": "1.3.0",
1718
"author": "Anselm Kiefner",
1819
"author_email": "[email protected]",
19-
"python_requires": ">=3.7",
20+
"python_requires": ">=3.10",
2021
"keywords": [
2122
"fuzzy logic",
2223
],

src/fuzzylogic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = (1, 2, 0)
1+
__version__ = (1, 3, 0)

0 commit comments

Comments
 (0)