Codebase list python-castellan / a081ce3
Merge tag '1.3.1' into debian/train castellan 1.3.1 release meta:version: 1.3.1 meta:diff-start: - meta:series: train meta:release-type: release meta:pypi: no meta:first: no meta:release:Author: Ben Nemec <bnemec@redhat.com> meta:release:Commit: Ben Nemec <bnemec@redhat.com> meta:release:Change-Id: Iae495750fe9d18b3dc8bce3e34e8ccd57851fe83 meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com> meta:release:Code-Review+2: Jean-Philippe Evrard <jean-philippe@evrard.me> meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com> Thomas Goirand 4 years ago
4 changed file(s) with 19 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
6060 - check-requirements
6161 - openstack-lower-constraints-jobs
6262 - openstack-python-jobs
63 - openstack-python36-jobs
64 - openstack-python37-jobs
63 - openstack-python3-train-jobs
6564 - periodic-stable-jobs
6665 - publish-openstack-docs-pti
6766 - release-notes-jobs-python3
0 # This is a cross-platform list tracking distribution packages needed for install and tests;
1 # see https://docs.openstack.org/infra/bindep/ for additional information.
2
3 unzip
1616 Programming Language :: Python :: 2.7
1717 Programming Language :: Python :: 3
1818 Programming Language :: Python :: 3.6
19 Programming Language :: Python :: 3.7
1920
2021 [files]
2122 packages =
00 [tox]
11 minversion = 2.0
2 envlist = py36,py27,pep8
2 envlist = py27,py37,pep8
33 skipsdist = True
44
55 [testenv]
103103 -c{toxinidir}/lower-constraints.txt
104104 -r{toxinidir}/test-requirements.txt
105105 -r{toxinidir}/requirements.txt
106
107 [testenv:bindep]
108 basepython = python3
109 # Do not install any requirements. We want this to be fast and work even if
110 # system dependencies are missing, since it's used to tell you what system
111 # dependencies are missing! This also means that bindep must be installed
112 # separately, outside of the requirements files, and develop mode disabled
113 # explicitly to avoid unnecessarily installing the checked-out repo too (this
114 # further relies on "tox.skipsdist = True" above).
115 deps = bindep
116 commands = bindep test
117 usedevelop = False