diff --git a/PKG-INFO b/PKG-INFO index c4661ac..548d121 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,32 +1,28 @@ Metadata-Version: 2.1 Name: swh.loader.bzr -Version: 1.3.1 +Version: 1.3.2 Summary: Software Heritage Bazaar/Breezy intent Home-page: https://forge.softwareheritage.org/diffusion/DLDBZR/ Author: Software Heritage developers Author-email: swh-devel@inria.fr -License: UNKNOWN Project-URL: Bug Reports, https://forge.softwareheritage.org/maniphest Project-URL: Funding, https://www.softwareheritage.org/donate Project-URL: Source, https://forge.softwareheritage.org/source/swh-loader-bzr Project-URL: Documentation, https://docs.softwareheritage.org/devel/swh-loader-bzr/ -Platform: UNKNOWN Classifier: Programming Language :: Python :: 3 Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) Classifier: Operating System :: OS Independent Classifier: Development Status :: 3 - Alpha Requires-Python: >=3.7 Description-Content-Type: text/x-rst Provides-Extra: testing License-File: LICENSE License-File: AUTHORS Software Heritage - Bazaar/Breezy loader ======================================== Loader for `Bazaar `_ and `Breezy `_ repositories. Breezy is a friendly fork of Bazaar that supports the Bazaar file format and network protocol. - - diff --git a/debian/changelog b/debian/changelog index 3286585..46d2b6e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,84 +1,87 @@ -swh-loader-bzr (1.3.1-1~swh1~bpo10+1) buster-swh; urgency=medium +swh-loader-bzr (1.3.2-1~swh1) unstable-swh; urgency=medium - * Rebuild for buster-swh + * New upstream release 1.3.2 - (tagged by Valentin Lorentz + on 2022-10-10 14:37:05 +0200) + * Upstream changes: - v1.3.2 - * add strict asyncio_mode in + pytest.ini - * require Rust-free versions of Breezy (< 3.3.0) - -- Software Heritage autobuilder (on jenkins-debian1) Fri, 29 Apr 2022 10:19:35 +0000 + -- Software Heritage autobuilder (on jenkins-debian1) Mon, 10 Oct 2022 12:40:47 +0000 swh-loader-bzr (1.3.1-1~swh1) unstable-swh; urgency=medium * New upstream release 1.3.1 - (tagged by Antoine Lambert on 2022-04-29 12:11:19 +0200) * Upstream changes: - version 1.3.1 -- Software Heritage autobuilder (on jenkins-debian1) Fri, 29 Apr 2022 10:17:53 +0000 swh-loader-bzr (1.3.0-1~swh1) unstable-swh; urgency=medium * New upstream release 1.3.0 - (tagged by Valentin Lorentz on 2022-04-25 11:48:10 +0200) * Upstream changes: - v1.3.0 - * Update for swh.loader.core 3.0.0 - * pre-commit and pytest maintenance -- Software Heritage autobuilder (on jenkins-debian1) Mon, 25 Apr 2022 09:54:58 +0000 swh-loader-bzr (1.2.0-1~swh1) unstable-swh; urgency=medium * New upstream release 1.2.0 - (tagged by Antoine R. Dumont (@ardumont) on 2022-02-23 09:55:46 +0100) * Upstream changes: - v1.2.0 - Support new repositories with old branches - loader: Upgrade repository with old formats prior to loading -- Software Heritage autobuilder (on jenkins-debian1) Wed, 23 Feb 2022 09:01:43 +0000 swh-loader-bzr (1.1.0-1~swh3) unstable-swh; urgency=medium * Bump new release -- Antoine R. Dumont (@ardumont) Fri, 11 Feb 2022 17:45:15 +0100 swh-loader-bzr (1.1.0-1~swh2) unstable-swh; urgency=medium * Bump new release -- Antoine R. Dumont (@ardumont) Fri, 11 Feb 2022 17:34:54 +0100 swh-loader-bzr (1.1.0-1~swh1) unstable-swh; urgency=medium * New upstream release 1.1.0 - (tagged by Antoine R. Dumont (@ardumont) on 2022-02-10 16:55:44 +0100) * Upstream changes: - v1.1.0 - Add fast-path to the bzr loader - Add type annotations, and fix issues found by mypy - pre- commit: Bump hooks and add new one to check commit message spelling -- Software Heritage autobuilder (on jenkins-debian1) Thu, 10 Feb 2022 16:40:56 +0000 swh-loader-bzr (1.0.1-1~swh1) unstable-swh; urgency=medium * New upstream release 1.0.1 - (tagged by Antoine R. Dumont (@ardumont) on 2022-02-09 16:14:32 +0100) * Upstream changes: - v1.0.1 - tests: Reference tasks module for tests to be ok with debian build - MANIFEST.in: Reference the tests data folder -- Software Heritage autobuilder (on jenkins-debian1) Wed, 09 Feb 2022 15:20:33 +0000 swh-loader-bzr (1.0.0-1~swh1) unstable-swh; urgency=medium * New upstream release 1.0.0 - (tagged by Antoine R. Dumont (@ardumont) on 2022-02-09 15:31:34 +0100) * Upstream changes: - v1.0.0 - Add incremental support for the bzr loader - Add bzr loader task - Use `branch` instead of `clone` - requirements-test: Pin pytest to < 7.0.0 -- Software Heritage autobuilder (on jenkins-debian1) Wed, 09 Feb 2022 14:39:13 +0000 swh-loader-bzr (0.1.0-1~swh1) unstable-swh; urgency=medium * Initial release -- Antoine R. Dumont (@ardumont) Wed, 09 Feb 2022 10:10:52 +0100 diff --git a/pytest.ini b/pytest.ini index e7f139e..7c07895 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,4 @@ [pytest] norecursedirs = build docs .* + +asyncio_mode = strict diff --git a/requirements.txt b/requirements.txt index a9de957..738bfc0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # Add here external Python modules dependencies, one per line. Module names # should match https://pypi.python.org/pypi names. For the full spec or # dependency lines, see https://pip.readthedocs.org/en/1.1/requirements.html -breezy +breezy < 3.3.0 # version 3.3.0 introduces Rust code, which requires rustc versions newer than available in Debian 11 diff --git a/swh.loader.bzr.egg-info/PKG-INFO b/swh.loader.bzr.egg-info/PKG-INFO index c4661ac..548d121 100644 --- a/swh.loader.bzr.egg-info/PKG-INFO +++ b/swh.loader.bzr.egg-info/PKG-INFO @@ -1,32 +1,28 @@ Metadata-Version: 2.1 Name: swh.loader.bzr -Version: 1.3.1 +Version: 1.3.2 Summary: Software Heritage Bazaar/Breezy intent Home-page: https://forge.softwareheritage.org/diffusion/DLDBZR/ Author: Software Heritage developers Author-email: swh-devel@inria.fr -License: UNKNOWN Project-URL: Bug Reports, https://forge.softwareheritage.org/maniphest Project-URL: Funding, https://www.softwareheritage.org/donate Project-URL: Source, https://forge.softwareheritage.org/source/swh-loader-bzr Project-URL: Documentation, https://docs.softwareheritage.org/devel/swh-loader-bzr/ -Platform: UNKNOWN Classifier: Programming Language :: Python :: 3 Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) Classifier: Operating System :: OS Independent Classifier: Development Status :: 3 - Alpha Requires-Python: >=3.7 Description-Content-Type: text/x-rst Provides-Extra: testing License-File: LICENSE License-File: AUTHORS Software Heritage - Bazaar/Breezy loader ======================================== Loader for `Bazaar `_ and `Breezy `_ repositories. Breezy is a friendly fork of Bazaar that supports the Bazaar file format and network protocol. - - diff --git a/swh.loader.bzr.egg-info/requires.txt b/swh.loader.bzr.egg-info/requires.txt index 7ad779a..e412e42 100644 --- a/swh.loader.bzr.egg-info/requires.txt +++ b/swh.loader.bzr.egg-info/requires.txt @@ -1,12 +1,12 @@ -breezy +breezy<3.3.0 swh.model>=2.6.1 swh.storage>=0.41.1 swh.scheduler>=0.23.0 swh.loader.core>=3.0.0 [testing] pytest pytest-mock swh.core[http]>=0.0.61 swh.scheduler[testing]>=0.5.0 swh.storage[testing]