<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-saharaclient.git, branch pike-em</title>
<subtitle>opendev.org: openstack/python-saharaclient
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/'/>
<entry>
<title>Explicitly use venv-py2 to run sahara-scenario</title>
<updated>2019-02-14T22:20:45+00:00</updated>
<author>
<name>Luigi Toscano</name>
<email>ltoscano@redhat.com</email>
</author>
<published>2019-02-04T18:50:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=e6589628165546df850ac290f74fd2680fc2b5ee'/>
<id>e6589628165546df850ac290f74fd2680fc2b5ee</id>
<content type='text'>
This patch is required only on the stable branches, because
master will end up using Python 3 to execute sahara-scenario.
It ensures that sahara-scenario will always be executed using
Python 2 on this branch.

Depends-On: https://review.openstack.org/608211
Change-Id: I3b0a4c0c26f96a901c8df215a8abc8bd73278c12
(cherry picked from commit 83d94f0a10dbb30d3de8c37de7b09ac009202cc9)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch is required only on the stable branches, because
master will end up using Python 3 to execute sahara-scenario.
It ensures that sahara-scenario will always be executed using
Python 2 on this branch.

Depends-On: https://review.openstack.org/608211
Change-Id: I3b0a4c0c26f96a901c8df215a8abc8bd73278c12
(cherry picked from commit 83d94f0a10dbb30d3de8c37de7b09ac009202cc9)
</pre>
</div>
</content>
</entry>
<entry>
<title>import zuul job settings from project-config</title>
<updated>2018-08-20T22:06:50+00:00</updated>
<author>
<name>Doug Hellmann</name>
<email>doug@doughellmann.com</email>
</author>
<published>2018-08-20T20:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=73946d5f35deea418a9652636cd149818941a659'/>
<id>73946d5f35deea418a9652636cd149818941a659</id>
<content type='text'>
This is a mechanically generated patch to complete step 1 of moving
the zuul job settings out of project-config and into each project
repository.

Because there will be a separate patch on each branch, the branch
specifiers for branch-specific jobs have been removed.

Because this patch is generated by a script, there may be some
cosmetic changes to the layout of the YAML file(s) as the contents are
normalized.

See the python3-first goal document for details:
https://governance.openstack.org/tc/goals/stein/python3-first.html

Change-Id: I0ced78298e5b9b4b82360093f5b14ec5242553e8
Story: #2002586
Task: #24332
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a mechanically generated patch to complete step 1 of moving
the zuul job settings out of project-config and into each project
repository.

Because there will be a separate patch on each branch, the branch
specifiers for branch-specific jobs have been removed.

Because this patch is generated by a script, there may be some
cosmetic changes to the layout of the YAML file(s) as the contents are
normalized.

See the python3-first goal document for details:
https://governance.openstack.org/tc/goals/stein/python3-first.html

Change-Id: I0ced78298e5b9b4b82360093f5b14ec5242553e8
Story: #2002586
Task: #24332
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove -U from pip install</title>
<updated>2018-08-07T08:16:06+00:00</updated>
<author>
<name>Andreas Jaeger</name>
<email>aj@suse.com</email>
</author>
<published>2017-12-02T18:19:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=3169081fd4f738287bd116cd2516d44a969c9cb2'/>
<id>3169081fd4f738287bd116cd2516d44a969c9cb2</id>
<content type='text'>
'pip install -U' ugrades specified packages, this is not necessary
since we use constraints, remove the parameter '-U' from the line.

With tools/tox_install.sh - which a previous change of mine removed -
the -U was not harmful, but with the current set up, it might cause
upgrades, so remove it.

Change-Id: Ib240b8c16dce80910d952e9eec860669af1ec399
(cherry picked from commit 47031b6087b25e6cb346563d8280fdbe7ff36c99)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'pip install -U' ugrades specified packages, this is not necessary
since we use constraints, remove the parameter '-U' from the line.

With tools/tox_install.sh - which a previous change of mine removed -
the -U was not harmful, but with the current set up, it might cause
upgrades, so remove it.

Change-Id: Ib240b8c16dce80910d952e9eec860669af1ec399
(cherry picked from commit 47031b6087b25e6cb346563d8280fdbe7ff36c99)
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid tox_install.sh for constraints support</title>
<updated>2018-08-07T08:16:06+00:00</updated>
<author>
<name>Andreas Jaeger</name>
<email>aj@suse.com</email>
</author>
<published>2017-12-02T08:37:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=3868bc098f820004d92b1d3f3daef573aca04d95'/>
<id>3868bc098f820004d92b1d3f3daef573aca04d95</id>
<content type='text'>
We do not need tox_install.sh, pip can handle constraints itself
and install the project correctly. Thus update tox.ini and remove
the now obsolete tools/tox_install.sh file.

This follows https://review.openstack.org/#/c/508061 to remove
tools/tox_install.sh.

Change-Id: Ibb97ddc7dc3a1c1cd7b4734377188fa625ddef7e
(cherry picked from commit 79d872a99a7b4eb5697b126c2549b8750442024f)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We do not need tox_install.sh, pip can handle constraints itself
and install the project correctly. Thus update tox.ini and remove
the now obsolete tools/tox_install.sh file.

This follows https://review.openstack.org/#/c/508061 to remove
tools/tox_install.sh.

Change-Id: Ibb97ddc7dc3a1c1cd7b4734377188fa625ddef7e
(cherry picked from commit 79d872a99a7b4eb5697b126c2549b8750442024f)
</pre>
</div>
</content>
</entry>
<entry>
<title>Native Zuul v3 jobs</title>
<updated>2018-02-20T22:59:32+00:00</updated>
<author>
<name>Luigi Toscano</name>
<email>ltoscano@redhat.com</email>
</author>
<published>2018-02-16T10:41:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=414c9b4180a98e930a302c5c825ad1e355a7279b'/>
<id>414c9b4180a98e930a302c5c825ad1e355a7279b</id>
<content type='text'>
Use the jobs defined by sahara-tests, and force the installation of
the saharaclient code by tuning LIBS_FROM_GIT.

Depends-On: https://review.openstack.org/512058
Change-Id: I33641a575b0529d6ff53ca9cf2b14e7d67d53084
(cherry picked from commit 8539116be54f4dbde94bba1b0cc5f2802a09591b)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the jobs defined by sahara-tests, and force the installation of
the saharaclient code by tuning LIBS_FROM_GIT.

Depends-On: https://review.openstack.org/512058
Change-Id: I33641a575b0529d6ff53ca9cf2b14e7d67d53084
(cherry picked from commit 8539116be54f4dbde94bba1b0cc5f2802a09591b)
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2017-10-04T23:10:39+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2017-10-04T23:10:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=fcdc3fe93f9627b64080619180b46e98d84d521e'/>
<id>fcdc3fe93f9627b64080619180b46e98d84d521e</id>
<content type='text'>
Change-Id: I37e5ca1b04c1edc2d3906b860a6970bdf68eb8b0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I37e5ca1b04c1edc2d3906b860a6970bdf68eb8b0
</pre>
</div>
</content>
</entry>
<entry>
<title>Reorganize the documentation following the new structure</title>
<updated>2017-09-04T19:56:09+00:00</updated>
<author>
<name>Luigi Toscano</name>
<email>ltoscano@redhat.com</email>
</author>
<published>2017-09-04T16:42:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=c8920770df4b82f53da335b29b825af420b0bc74'/>
<id>c8920770df4b82f53da335b29b825af420b0bc74</id>
<content type='text'>
- move api as "reference" guide and reword as Python client;
- consolidate shell and cli as part of the "CLI" guide;
- remove the "how_to_participate" page and use part of
  the content from the old index for a minimal "contributor"
  guide which redirect to the sahara contributor guide
  (no need to duplicate the information);
- remove few references to doc/source/api from tox.ini and
  .gitignore (for some reason the directory was cleaned).

Also, adapt the version-specific links to Pike.

Change-Id: Iff049ab32a7695a7a58bd370a1517b1ed7d2f048
(cherry picked from commit 889cbb56133afe348093c2d289186561a07c83c6)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- move api as "reference" guide and reword as Python client;
- consolidate shell and cli as part of the "CLI" guide;
- remove the "how_to_participate" page and use part of
  the content from the old index for a minimal "contributor"
  guide which redirect to the sahara contributor guide
  (no need to duplicate the information);
- remove few references to doc/source/api from tox.ini and
  .gitignore (for some reason the directory was cleaned).

Also, adapt the version-specific links to Pike.

Change-Id: Iff049ab32a7695a7a58bd370a1517b1ed7d2f048
(cherry picked from commit 889cbb56133afe348093c2d289186561a07c83c6)
</pre>
</div>
</content>
</entry>
<entry>
<title>Update UPPER_CONSTRAINTS_FILE for stable/pike</title>
<updated>2017-07-28T21:07:59+00:00</updated>
<author>
<name>OpenStack Release Bot</name>
<email>infra-root@openstack.org</email>
</author>
<published>2017-07-28T21:07:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=da1be5f119ef2df65823f0277c4f9b1ecd258c24'/>
<id>da1be5f119ef2df65823f0277c4f9b1ecd258c24</id>
<content type='text'>
Change-Id: Ib460e034b4f9b0716cdcea005f00bf072f1f02d1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ib460e034b4f9b0716cdcea005f00bf072f1f02d1
</pre>
</div>
</content>
</entry>
<entry>
<title>Update .gitreview for stable/pike</title>
<updated>2017-07-28T21:07:59+00:00</updated>
<author>
<name>OpenStack Release Bot</name>
<email>infra-root@openstack.org</email>
</author>
<published>2017-07-28T21:07:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=1d47659add0f2ee8408ac66071b8b7d9aee73354'/>
<id>1d47659add0f2ee8408ac66071b8b7d9aee73354</id>
<content type='text'>
Change-Id: I534d1d858b57abb5bd7f369fdf68e30320f1da12
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I534d1d858b57abb5bd7f369fdf68e30320f1da12
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2017-07-27T20:33:22+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2017-07-27T20:33:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-saharaclient.git/commit/?id=4275d17a9fbbed0126783e893aeaa821197ecafb'/>
<id>4275d17a9fbbed0126783e893aeaa821197ecafb</id>
<content type='text'>
Change-Id: I756b384cbf302a7d43d6433acfc34dc0252c5cd2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I756b384cbf302a7d43d6433acfc34dc0252c5cd2
</pre>
</div>
</content>
</entry>
</feed>
