Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ 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:
journal: joss
# 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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -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/
Expand All @@ -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/
Expand Down Expand Up @@ -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/
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "empiarreader"
version = "0.0.4"
version = "0.0.11"
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 <bcostagomes@turing.ac.uk>", "ots22 <ostrickson@turing.ac.uk>"]
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"
Expand All @@ -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 = "^5.0.0", optional = true }
pydata-sphinx-theme = { version = "^0.7", optional = true }

[tool.poetry.dev-dependencies]
Expand Down
Loading