Airflow stable 2.6.2

This PS updates python modules and code to match Airflow 2.6.2

Change-Id: Ibdcc75e600166c20b842508aa5539587cca466f0
This commit is contained in:
Sergiy Markin 2023-07-03 20:35:08 +00:00
parent 613dd89fb0
commit f19d9843c9
4 changed files with 158 additions and 8 deletions

View File

@ -0,0 +1,101 @@
amqp==5.1.1
attrs==23.1.0
backports.zoneinfo==0.2.1
bcrypt==4.0.1
Beaker==1.12.1
cachetools==5.3.1
certifi==2023.5.7
cffi==1.15.1
charset-normalizer==3.1.0
click==8.1.3
cryptography==40.0.2
debtcollector==2.5.0
decorator==5.1.1
defusedxml==0.7.1
dnspython==2.3.0
eventlet==0.33.3
exceptiongroup==1.1.1
falcon==3.1.1
fasteners==0.18
fixtures==4.1.0
futurist==2.4.1
greenlet==2.0.2
idna==3.4
importlib-resources==5.12.0
iniconfig==2.0.0
iso8601==2.0.0
Jinja2==3.1.2
jsonpatch==1.32
jsonpath-rw==1.4.0
jsonpointer==2.3
jsonschema==4.17.3
keystoneauth1==5.2.1
kombu==5.3.0
libvirt-python==9.5.0
MarkupSafe==2.1.3
mock==5.0.2
msgpack==1.0.5
netaddr==0.8.0
netifaces==0.11.0
oauthlib==3.2.2
os-service-types==1.7.0
oslo.concurrency==5.1.1
oslo.config==9.1.1
oslo.context==5.1.1
oslo.i18n==6.0.0
oslo.log==5.2.0
oslo.messaging==14.3.1
oslo.metrics==0.6.0
oslo.middleware==5.1.1
oslo.policy==4.2.0
oslo.serialization==5.1.1
oslo.service==3.1.1
oslo.utils==6.1.0
oslo.versionedobjects==3.1.0
packaging==21.3
Paste==3.5.3
PasteDeploy==3.0.1
pbr==5.11.1
pip==23.1.2
pkgutil_resolve_name==1.3.10
pluggy==1.0.0
ply==3.11
prettytable==3.8.0
prometheus-client==0.17.0
psycopg2-binary==2.9.6
pycparser==2.21
pyghmi==1.5.61
pylibyaml==0.1.0
pymongo==4.3.3
pyparsing==3.0.9
pyrsistent==0.19.3
pytest==7.3.2
python-dateutil==2.8.2
pytz==2023.3
PyYAML==6.0
redfish==3.1.9
repoze.lru==0.7
requests==2.31.0
requests-toolbelt==1.0.0
requests-unixsocket==0.3.0
responses==0.23.1
rfc3986==1.5.0
Routes==2.5.1
setuptools==67.7.2
six==1.16.0
SQLAlchemy==1.4.48
statsd==4.0.1
stevedore==5.1.0
tomli==2.0.1
types-PyYAML==6.0.12.10
typing_extensions==4.6.3
tzdata==2023.3
ulid2==0.3.0
urllib3==1.26.16
vine==5.0.0
wcwidth==0.2.6
WebOb==1.8.7
wheel==0.40.0
wrapt==1.15.0
yappi==1.4.0
zipp==3.15.0

View File

@ -0,0 +1,25 @@
Beaker
click
defusedxml
falcon
Jinja2
jsonschema
keystoneauth1
libvirt-python
mock
netaddr
oauthlib
oslo.config
oslo.policy
oslo.versionedobjects
prettytable
psycopg2-binary
pyghmi
pylibyaml
pymongo
pytest
redfish
Requests
responses
SQLAlchemy
ulid2

View File

@ -1,15 +1,14 @@
# tests
click
falcon==3.1.1
jsonschema==3.2.0
mock==5.0.1
pylibyaml==0.1.0
pymongo
# click
# falcon==3.1.1
# jsonschema==3.2.0
# mock==5.0.1
# pylibyaml==0.1.0
# pymongo
pytest >= 3.0
pytest-cov==4.0.0
pytest-mock
responses
ulid2
# tools
yapf

25
tox.ini
View File

@ -37,6 +37,31 @@ commands=
rm -f python/requirements-frozen-bionic.txt
sh -c "pip freeze --all | grep -vE 'drydock_provisioner|pyinotify|pkg-resources==0.0.0' > python/requirements-frozen-bionic.txt"
[testenv:freeze-stable]
basepython=python3
recreate = True
allowlist_externals=
rm
sh
deps=
-r{toxinidir}/python/requirements-stable.txt
-c https://raw.githubusercontent.com/apache/airflow/constraints-2.6.2/constraints-3.8.txt
commands=
rm -f python/requirements-frozen-stable.txt
sh -c "pip freeze --all | grep -vE 'drydock_provisioner|pyinotify|pkg-resources==0.0.0' > python/requirements-frozen-stable.txt"
[testenv:py38-stable]
setenv=
PYTHONWARNING=all
YAMLDIR={toxinidir}/python/tests/yaml_samples/
deps=
-r{toxinidir}/python/requirements-frozen-stable.txt
-r{toxinidir}/python/test-requirements.txt
-e python
commands=
py.test \
--cov=drydock_provisioner \
{toxinidir}/python/tests/unit/{posargs}
[testenv:yapf]