Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/brisvag/waretomo
Browse files Browse the repository at this point in the history
  • Loading branch information
brisvag committed Aug 29, 2023
2 parents e7a7936 + e1a0014 commit 523b8ef
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # every week (for --pre release tests)

jobs:
check-manifest:
runs-on: ubuntu-latest
Expand All @@ -28,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
platform: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down Expand Up @@ -72,6 +71,8 @@ jobs:
needs: test
if: success() && startsWith(github.ref, 'refs/tags/') && github.event_name != 'schedule'
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@

Overengineered batch processing script for tomography data with Warp and aretomo.

# Installation
# Installation and usage

```bash
pip install waretomo
```

# Usage
```bash
waretomo -h
```

# Walkthrough

Here's a short summary of how I recommend using this script:

Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ build-backend = "hatchling.build"
# https://peps.python.org/pep-0621/
[project]
name = "waretomo"
description = "Batch processing for tomography data with Warp and aretomo."
description = "Overengineered batch processing script for tomography data with Warp and aretomo."
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { text = "GPLv3" }
authors = [
{ email = "[email protected]", name = "Lorenzo Gaifas" },
Expand All @@ -18,7 +18,6 @@ classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -78,7 +77,7 @@ sources = ["src"]
# https://github.com/charliermarsh/ruff
[tool.ruff]
line-length = 88
target-version = "py38"
target-version = "py39"
src = ["src"]
# https://beta.ruff.rs/docs/rules/
select = [
Expand Down

0 comments on commit 523b8ef

Please sign in to comment.