From 7874452ee56f9d17dcc735516a1237a48423063b Mon Sep 17 00:00:00 2001 From: Sergey Rybakov Date: Wed, 8 May 2024 11:34:16 +0300 Subject: [PATCH] actions/download-artifact upgraded to v4; poetry locked --- .github/workflows/on_release.yml | 2 +- .github/workflows/on_test_release.yml | 2 +- poetry.lock | 13 ++++--------- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml index 5efecad..e440ae0 100644 --- a/.github/workflows/on_release.yml +++ b/.github/workflows/on_release.yml @@ -38,7 +38,7 @@ jobs: url: https://pypi.org/p/${{ vars.PACKAGE_NAME }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: # unpacks default artifact into dist/ # if `name: artifact` is omitted, the action will create extra parent dir diff --git a/.github/workflows/on_test_release.yml b/.github/workflows/on_test_release.yml index 7472e6c..446324c 100644 --- a/.github/workflows/on_test_release.yml +++ b/.github/workflows/on_test_release.yml @@ -21,7 +21,7 @@ jobs: url: https://test.pypi.org/p/${{ vars.PACKAGE_NAME }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: # unpacks default artifact into dist/ # if `name: artifact` is omitted, the action will create extra parent dir diff --git a/poetry.lock b/poetry.lock index 4ee79d8..47dc925 100644 --- a/poetry.lock +++ b/poetry.lock @@ -499,12 +499,12 @@ optimize = ["orjson"] [[package]] name = "deker-local-adapters" -version = "1.1.1b1" +version = "1.1.1" description = "Plugin with local adapters for deker" optional = false -python-versions = ">=3.9,<4.0" +python-versions = "<4.0,>=3.9" files = [ - {file = "deker_local_adapters-1.1.1b1.tar.gz", hash = "sha256:532c0f732fb0f47b4a14ecc7dbbb2ec32761fb00e322262e39fcdddd525fc86d"}, + {file = "deker_local_adapters-1.1.1.tar.gz", hash = "sha256:c3d5ec08bf479e5c7852a263f127e6896b38507ec34f7337eb6bc41305cb1143"}, ] [package.dependencies] @@ -513,11 +513,6 @@ h5py = ">=3.8.0,<4.0.0" hdf5plugin = ">=4.0.1,<5.0.0" numpy = ">=1.18,<2.0" -[package.source] -type = "legacy" -url = "https://test.pypi.org/simple" -reference = "testpypi" - [[package]] name = "deker-server-adapters" version = "1.0.5" @@ -2708,4 +2703,4 @@ xarray = ["xarray"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "f68067cb2c72456d22a10c64da6512d49d0c29e11569cd22a6b97b158d9ab09f" +content-hash = "a94291f635fab7ce16a9164c854bd3150468072cc9c9d400da90b204bc05595d" diff --git a/pyproject.toml b/pyproject.toml index 246b7c8..761d030 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ attrs = "^23.1.0" typing-extensions = "^4.4.0" tqdm = "^4.64.1" psutil = "^5.9.5" -deker-local-adapters = { version = "^1.1.1b-1", source = "testpypi" } +deker-local-adapters = "^1.1.1" deker-server-adapters = {version = "^1.0.0", optional = true} deker-shell = { version = "^1.0.0", optional = true } xarray = {version = "^2023.5.0", optional = true}