From 303a36e995b9f1bf7125be228594c14a91299ac9 Mon Sep 17 00:00:00 2001 From: Tpt Date: Fri, 15 Jan 2021 18:54:09 +0100 Subject: [PATCH] Python: Switch to Maturin 0.9 --- .github/workflows/release.yml | 1 - python/Cargo.toml | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5211fae0..722eb172 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,7 +68,6 @@ jobs: needs: publish_lib_crate steps: - uses: actions/checkout@v2 - - run: sed -i 's/path="..\/lib", //g' python/Cargo.toml - run: docker run --rm -v $(pwd):/io konstin2/maturin build --release working-directory: ./python - uses: pypa/gh-action-pypi-publish@v1.4.1 diff --git a/python/Cargo.toml b/python/Cargo.toml index 39b21127..8a3a9509 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -34,9 +34,5 @@ classifier = [ "Topic :: Database :: Database Engines/Servers", "Topic :: Software Development :: Libraries :: Python Modules", ] -project-url = [ - "Documentation, https://oxigraph.org/pyoxigraph/", - "Source, https://github.com/oxigraph/oxigraph/tree/master/python", - "Tracker, https://github.com/oxigraph/oxrdflib/issues", -] +project-url = { Documentation = "https://oxigraph.org/pyoxigraph/", Source = "https://github.com/oxigraph/oxigraph/tree/master/python", Tracker = "https://github.com/oxigraph/oxrdflib/issues" } requires-python = ">=3.6"