From 6e15603a79a1fee8a7d7b6f6971fdf081170f31d Mon Sep 17 00:00:00 2001 From: simleo Date: Thu, 14 Mar 2024 16:48:46 +0100 Subject: [PATCH 1/2] readme: delete trailing whitespace --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 76aa7e2..4e1a2b8 100644 --- a/README.md +++ b/README.md @@ -405,15 +405,15 @@ Options: * Copyright 2020-2024 Center for Advanced Studies, Research and Development in Sardinia (CRS4), IT * Copyright 2022-2024 École Polytechnique Fédérale de Lausanne, CH -Licensed under the -Apache License, version 2.0 , +Licensed under the +Apache License, version 2.0 , see the file `LICENSE.txt` for details. ## Cite as [![DOI](https://zenodo.org/badge/216605684.svg)](https://zenodo.org/badge/latestdoi/216605684) -The above DOI corresponds to the latest versioned release as [published to Zenodo](https://zenodo.org/record/3956493), where you will find all earlier releases. +The above DOI corresponds to the latest versioned release as [published to Zenodo](https://zenodo.org/record/3956493), where you will find all earlier releases. To cite `ro-crate-py` independent of version, use , which will always redirect to the latest release. You may also be interested in the paper [Packaging research artefacts with RO-Crate](https://doi.org/10.3233/DS-210053). From c0442d094ffefaf5541cf090a7746fd6227388de Mon Sep 17 00:00:00 2001 From: simleo Date: Fri, 15 Mar 2024 12:09:14 +0100 Subject: [PATCH 2/2] skip test_ftp_uri on MacOS --- test/test_write.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_write.py b/test/test_write.py index b2be9ab..aa66ac3 100644 --- a/test/test_write.py +++ b/test/test_write.py @@ -20,6 +20,7 @@ import pytest import os import uuid +import sys import zipfile from itertools import product from urllib.error import URLError @@ -214,6 +215,7 @@ def test_looks_like_file_uri(tmpdir, monkeypatch): assert (out_path / f_name).is_file() +@pytest.mark.skipif(sys.platform == "darwin", reason="FTP opening broken on macOS CI instances") @pytest.mark.slow @pytest.mark.parametrize("fetch_remote", [False, True]) def test_ftp_uri(tmpdir, fetch_remote):