Skip to content

Commit 77fac66

Browse files
committed
widen dep version constraints and list py3.8-3.11 as compatible
1 parent 6540b49 commit 77fac66

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

Diff for: requirements.txt

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# 202404: Align all requirements with st2 fixed-requirements
2-
chardet==5.2.0
3-
eventlet==0.35.2
4-
jinja2==3.1.3 # BSD License (3 clause)
5-
jsonschema==3.2.0 # MIT
2+
# 202405: Orquesta is a library, leave version ranges as wide as possible
3+
# so pip can handle resolving the final version constraints.
4+
chardet>=3.0.2
5+
eventlet
6+
jinja2>=2.11 # BSD License (3 clause)
7+
jsonschema>=3,<4 # MIT
68
# networkx v3.2 and greater does not support Python3.8.
7-
networkx<3.2
8-
python-dateutil==2.8.1
9-
pyyaml==5.3.1 # MIT
10-
six~=1.15
9+
networkx>=2.6,<3.2
10+
python-dateutil
11+
pyyaml>=5.3.1 # MIT
12+
six>=1.14.0
1113
stevedore>=1.3.0 # Apache-2.0
1214
ujson>=1.35 # BSD License
1315
yaql>=1.1.0 # Apache-2.0

Diff for: setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,11 @@ def get_requirements():
6161
"License :: OSI Approved :: Apache Software License",
6262
"Operating System :: POSIX :: Linux",
6363
"Programming Language :: Python",
64-
"Programming Language :: Python :: 2",
65-
"Programming Language :: Python :: 2.7",
6664
"Programming Language :: Python :: 3",
67-
"Programming Language :: Python :: 3.6",
65+
"Programming Language :: Python :: 3.8",
66+
"Programming Language :: Python :: 3.9",
67+
"Programming Language :: Python :: 3.10",
68+
"Programming Language :: Python :: 3.11",
6869
],
6970
entry_points={
7071
"orquesta.composers": [

Diff for: tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tox]
2-
envlist = py36,py38,py39,py310,py311,pep8,docs
2+
envlist = py38,py39,py310,py311,pep8,docs
33
minversion = 1.6
44
skipsdist = True
55

66
[gh-actions]
77
python =
8-
3.6: py36
98
3.8: py38,pep8,docs
109
3.9: py39
1110
3.10: py310

0 commit comments

Comments
 (0)