Skip to content

Commit 7c4fbcf

Browse files
committed
Note that 3.8 will be dropped in v5.0 too
1 parent 0448d9a commit 7c4fbcf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ A lightweight, optionally typed expression language with a custom grammar for ma
77
Documentation is available at https://zeroSteiner.github.io/rule-engine/.
88

99
:Warning:
10-
The next major version (5.0) will remove support Python versions 3.6 and 3.7. There is currently no timeline for its
11-
release.
10+
The next major version (5.0) will remove support Python versions 3.6, 3.7 and 3.8. There is currently no timeline for
11+
its release.
1212

1313
Rule Engine expressions are written in their own language, defined as strings in Python. The syntax is most similar to
1414
Python with some inspiration from Ruby. Some features of this language includes:

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@
8787
'Operating System :: OS Independent',
8888
#'Programming Language :: Python :: 3.4', # dropped in v4.0
8989
#'Programming Language :: Python :: 3.5', # dropped in v4.0
90-
'Programming Language :: Python :: 3.6',
91-
'Programming Language :: Python :: 3.7',
92-
'Programming Language :: Python :: 3.8',
90+
'Programming Language :: Python :: 3.6', # will be dropped in v5.0
91+
'Programming Language :: Python :: 3.7', # will be dropped in v5.0
92+
'Programming Language :: Python :: 3.8', # will be dropped in v5.0
9393
'Programming Language :: Python :: 3.9',
9494
'Programming Language :: Python :: 3.10',
9595
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)