From e49d9b3481896c5fb130961faa76e58867e7bd47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jan=C3=9Fen?= Date: Tue, 2 Jan 2024 22:37:08 +0100 Subject: [PATCH] Transfer repository from pyiron to h5io --- .github/workflows/format_black.yml | 33 ------------------------------ CODE_OF_CONDUCT.md | 2 +- README.md | 6 +++--- pyproject.toml | 6 +++--- 4 files changed, 7 insertions(+), 40 deletions(-) delete mode 100644 .github/workflows/format_black.yml diff --git a/.github/workflows/format_black.yml b/.github/workflows/format_black.yml deleted file mode 100644 index f7a62e5..0000000 --- a/.github/workflows/format_black.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This workflow will checkout the branch of the PR, apply black formatting and commit the result to the PR. Does not work for forks. - -name: Format black - -on: - pull_request: - types: [labeled] - -jobs: - build: - if: contains(github.event.pull_request.labels.*.name, 'format_black' ) - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - token: ${{ secrets.DEPENDABOT_WORKFLOW_TOKEN }} - ref: ${{ github.event.pull_request.head.ref }} # Check out the head of the actual branch, not the PR - fetch-depth: 0 # otherwise, you will fail to push refs to dest repo - - name: format black - uses: psf/black@stable - with: - options: "" - src: "./${{ github.event.repository.name }}" - - name: commit - run: | - git config --local user.email "pyiron@mpie.de" - git config --local user.name "pyiron-runner" - git commit -m "Format black" -a - - name: push - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.DEPENDABOT_WORKFLOW_TOKEN }} - branch: ${{ github.event.pull_request.head.ref }} diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 92b4451..a517114 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at pyiron@mpie.de. All +reported by contacting the project team at janssen@mpie.de . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. diff --git a/README.md b/README.md index 1033090..a266ef4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Easy navigation and data storage for HDF5 -[![Python package](https://github.com/pyiron/h5io_browser/actions/workflows/unittests.yml/badge.svg)](https://github.com/pyiron/h5io_browser/actions) -[![Coverage Status](https://coveralls.io/repos/github/pyiron/h5io_browser/badge.svg?branch=main)](https://coveralls.io/github/pyiron/h5io_browser?branch=main) -[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/pyiron/h5io_browser/HEAD?labpath=notebooks%2Fexample.ipynb) +[![Python package](https://github.com/h5io/h5io_browser/actions/workflows/unittests.yml/badge.svg)](https://github.com/h5io/h5io_browser/actions) +[![Coverage Status](https://coveralls.io/repos/github/h5io/h5io_browser/badge.svg?branch=main)](https://coveralls.io/github/h5io/h5io_browser?branch=main) +[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/h5io/h5io_browser/HEAD?labpath=notebooks%2Fexample.ipynb) The [hierarchical data format (HDF)](https://www.hdfgroup.org) is aimed to ensure efficient and equitable access to science and engineering data across platforms and environments. The [h5py](https://www.h5py.org) package provides a diff --git a/pyproject.toml b/pyproject.toml index c9891ab..5f46d05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,9 +33,9 @@ dependencies = [ dynamic = ["version"] [project.urls] -Homepage = "https://github.com/pyiron/h5io_browser" -Documentation = "https://github.com/pyiron/h5io_browser" -Repository = "https://github.com/pyiron/h5io_browser" +Homepage = "https://github.com/h5io/h5io_browser" +Documentation = "https://github.com/h5io/h5io_browser" +Repository = "https://github.com/h5io/h5io_browser" [tool.setuptools.packages.find] include = ["h5io_browser*"]