diff --git a/.github/workflows/draft-pdf.yml b/.github/workflows/draft-pdf.yml index 8effae6..1b11ba9 100644 --- a/.github/workflows/draft-pdf.yml +++ b/.github/workflows/draft-pdf.yml @@ -6,7 +6,7 @@ jobs: name: Paper Draft steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build draft PDF uses: openjournals/openjournals-draft-action@master with: @@ -14,7 +14,7 @@ jobs: # This should be the path to the paper within your repo. paper-path: joss/paper.md - name: Upload - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: paper # This is the output path where Pandoc will write the compiled diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 6086ef1..405df2f 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -22,7 +22,7 @@ jobs: - name: build-bin-whl run: python3 -m build - name: grab-build - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pkg-dist path: dist/ @@ -42,7 +42,7 @@ jobs: steps: - name: download-dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: pkg-dist path: dist/ @@ -62,7 +62,7 @@ jobs: steps: - name: download-dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: pkg-dist path: dist/ @@ -104,7 +104,7 @@ jobs: steps: - name: download-dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: pkg-dist path: dist/ diff --git a/pyproject.toml b/pyproject.toml index d368385..2790614 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "empiarreader" -version = "0.0.4" +version = "0.0.10" description = "EMPIARReader provides utilities to lazily load data from EMPIAR into a machine-learning-friendly dataset format or to locally download the files." authors = ["mooniean ", "ots22 "] readme = "README.md" [tool.poetry.dependencies] python = "^3.8" -intake = "^0.6.5" +intake = "^0.6.6" bs4 = "^0.0.1" matplotlib = "^3.6.1" requests = "^2.28.1" @@ -19,9 +19,10 @@ intake-xarray = "^0.6.1" aiohttp = "^3.8.3" setuptools = "^67.7.2" pre-commit = "^3.3.3" +numpy = "1.23.3" # Dependencies for 'extras' -Sphinx = { version = "^5.0", optional = true } +Sphinx = { version = "^4.5.0", optional = true } pydata-sphinx-theme = { version = "^0.7", optional = true } [tool.poetry.dev-dependencies]