Skip to content

Commit 93ae4b0

Browse files
github-actions[bot]patkyndjtfmartinsadeghimdependabot[bot]
authored
Release v0.1.0
* Initial code * Update readme and license * dwcahandler package to list darwin core term and pytest * Update run-tests.yml * add init file in tests * add init file in tests * Update run-tests.yml * Update run-tests.yml * add init file in tests * update run-test github action * update run-test github action * update run-test github action * Make create dwca to accept dataframe, bugfix on read eml from existing dwca * Update readme * Update readme * Add Eml support * updated readme * Update README.md - syntax highlighting * Extracting type and format from the associatedMedia * Added .gitignore * added test case with pytest fixture for extract records * Feature/clean up (#7) * fix error on pytest in github action * bugfix * remove duplicates and test * fix pylint warnings * #3 - Remove the LargeDwca class * #3 - Upgrade pandas version to latest * Bump urllib3 from 2.1.0 to 2.2.2 (#6) Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.1.0 to 2.2.2. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@2.1.0...2.2.2) --- updated-dependencies: - dependency-name: urllib3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Upgrade request package * Add github action to run build and publishing to testpypi * update github action * update github action for publishing to test * test on multiple versions of python and os * bugfix for windows path * Add create dwca tests * upgrade version for test * Add build and publish automation. Set version * Add prepare release automation * Fix typo --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Patricia Koh <patkyn@hotmail.com> Co-authored-by: Patricia Koh <patricia.koh@csiro.au> Co-authored-by: Dave Martin <djtfmartin@users.noreply.github.com> Co-authored-by: Mahmoud <sadeghim@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7347bed commit 93ae4b0

31 files changed

+3740
-2
lines changed

.github/workflows/prepare-release.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# This is a basic workflow that is manually triggered
2+
3+
name: Create release branch from develop
4+
on:
5+
workflow_dispatch:
6+
branches: [ "develop" ]
7+
8+
jobs:
9+
draft-new-release:
10+
if:
11+
contains(github.ref, 'develop')
12+
name: "Draft a new release"
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Set up Python 3.9
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: "3.9"
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install poetry
26+
poetry install
27+
- name: Build
28+
id: build-step
29+
run: |
30+
poetry build
31+
VERSION=$(poetry version -s)
32+
echo "$VERSION"
33+
echo "version=$VERSION" >> $GITHUB_OUTPUT
34+
35+
- name: Create release branch
36+
run: git checkout -b release/${{ steps.build-step.outputs.version }}
37+
38+
- name: Push new branch
39+
run: git push origin release/${{ steps.build-step.outputs.version }}
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
43+
- name: Create pull request
44+
run: gh pr create -H release/${{ steps.build-step.outputs.version }} -B main
45+
--title 'Release v${{ steps.build-step.outputs.version }}'
46+
--body 'Created by Github action'
47+
env:
48+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish-release.yml

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
name: Publish release build to pypi and create release tag
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
outputs:
12+
version: ${{ steps.build-step.outputs.version }}
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Set up Python 3.9
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.9"
20+
- name: Install pip and flake package
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install flake8 pytest
24+
- name: Lint with flake8
25+
run: |
26+
# stop the build if there are Python syntax errors or undefined names
27+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
28+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
29+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
30+
- name: Install poetry and project dependencies
31+
run: |
32+
python -m pip install poetry
33+
poetry install
34+
- name: Test with pytest
35+
run: |
36+
echo ${{ github.workspace }}
37+
cd ${{ github.workspace }}/tests
38+
poetry run pytest
39+
- name: Build
40+
id: build-step
41+
run: |
42+
poetry build
43+
VERSION=$(poetry version -s)
44+
echo "$VERSION"
45+
echo "version=$VERSION" >> $GITHUB_OUTPUT
46+
- name: Print release version
47+
run: |
48+
echo "the version number is ${{ steps.build-step.outputs.version }}"
49+
- name: Archive production artifacts
50+
uses: actions/upload-artifact@v4
51+
with:
52+
name: dwcahandler-dist-v${{ steps.build-step.outputs.version }}
53+
path: dist
54+
55+
publish-to-pypi:
56+
name: Publish dwcahandler distribution to PyPI
57+
runs-on: ubuntu-latest
58+
59+
needs:
60+
- build
61+
62+
environment:
63+
name: production
64+
url: https://pypi.org/p/dwcahandler
65+
66+
permissions:
67+
id-token: write # IMPORTANT: mandatory for trusted publishing
68+
69+
steps:
70+
- name: Download all the dists
71+
uses: actions/download-artifact@v4
72+
with:
73+
name: dwcahandler-dist-v${{ needs.build.outputs.version }}
74+
path: dist/
75+
- name: Publish dwcahandler distribution to PyPI
76+
uses: pypa/gh-action-pypi-publish@release/v1
77+
78+
github-release:
79+
name: >-
80+
Sign the dwcahandler distribution with Sigstore
81+
and upload them to GitHub Release
82+
needs: [build, publish-to-pypi]
83+
runs-on: ubuntu-latest
84+
85+
permissions:
86+
contents: write # IMPORTANT: mandatory for making GitHub Releases
87+
id-token: write # IMPORTANT: mandatory for sigstore
88+
89+
steps:
90+
- name: Download all the dists
91+
uses: actions/download-artifact@v4
92+
with:
93+
name: dwcahandler-dist-v${{ needs.build.outputs.version }}
94+
path: dist/
95+
- name: Sign the dists with Sigstore
96+
uses: sigstore/gh-action-sigstore-python@v2.1.1
97+
with:
98+
inputs: >-
99+
./dist/*.tar.gz
100+
./dist/*.whl
101+
- name: Create GitHub Release
102+
id: create-release
103+
env:
104+
GITHUB_TOKEN: ${{ github.token }}
105+
run: |
106+
version="v${{ needs.build.outputs.version }}"
107+
gh release create $version --repo ${{ github.repository }}
108+
echo "tag-version=$version" >> "$GITHUB_OUTPUT"
109+
- name: Upload artifact signatures to GitHub Release
110+
env:
111+
GITHUB_TOKEN: ${{ github.token }}
112+
# Upload to GitHub Release using the `gh` CLI.
113+
# `dist/` contains the built packages, and the
114+
# sigstore-produced signatures and certificates.
115+
run: >-
116+
gh release upload
117+
'${{ steps.create-release.outputs.tag-version }}' dist/**
118+
--repo '${{ github.repository }}'

.github/workflows/publish-test.yml

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: Publish test build to testpypi
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
outputs:
10+
version: ${{ steps.build-step.outputs.version }}
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up Python 3.9
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.9"
18+
- name: Install pip and flake package
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install flake8 pytest
22+
- name: Lint with flake8
23+
run: |
24+
# stop the build if there are Python syntax errors or undefined names
25+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
26+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
27+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
28+
- name: Install poetry and project dependencies
29+
run: |
30+
python -m pip install poetry
31+
poetry install
32+
- name: Test with pytest
33+
run: |
34+
echo ${{ github.workspace }}
35+
cd ${{ github.workspace }}/tests
36+
poetry run pytest
37+
- name: Build
38+
id: build-step
39+
run: |
40+
poetry build
41+
VERSION=$(poetry version -s)
42+
echo "$VERSION"
43+
echo "version=$VERSION" >> $GITHUB_OUTPUT
44+
- name: Output the release version of dwcahandler
45+
run: |
46+
echo "the version number is ${{ steps.build-step.outputs.version }}"
47+
- name: Archive test artifacts
48+
uses: actions/upload-artifact@v4
49+
with:
50+
name: dwcahandler-test-dist-v${{ steps.build-step.outputs.version }}
51+
path: dist
52+
53+
publish-to-pypi:
54+
name: Publish dwcahandler distribution to TestPyPI
55+
needs:
56+
- build
57+
runs-on: ubuntu-latest
58+
59+
environment:
60+
name: test
61+
url: https://test.pypi.org/p/dwcahandler
62+
63+
permissions:
64+
id-token: write # IMPORTANT: mandatory for trusted publishing
65+
66+
steps:
67+
- name: Download all the dists
68+
uses: actions/download-artifact@v4
69+
with:
70+
name: dwcahandler-test-dist-v${{ needs.build.outputs.version }}
71+
path: dist/
72+
- name: Publish dwcahandler distribution to TestPyPI
73+
uses: pypa/gh-action-pypi-publish@release/v1
74+
with:
75+
repository-url: https://test.pypi.org/legacy/

.github/workflows/run-tests.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Run test
2+
3+
on:
4+
push:
5+
branches: [ "main", "develop" ]
6+
pull_request:
7+
branches: [ "main", "develop" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
name: Run tests on ${{ matrix.python.key || matrix.python }} with ${{ matrix.os }}
15+
strategy:
16+
fail-fast: true
17+
matrix:
18+
os: [ubuntu-latest, macos-12, Windows-latest]
19+
python:
20+
- "3.9"
21+
- "3.10"
22+
- "3.11"
23+
- "3.12"
24+
25+
runs-on: ${{ matrix.os }}
26+
27+
steps:
28+
- uses: actions/checkout@v4
29+
- name: Set up Python ${{ matrix.python }}
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python }}
33+
- name: Install pip and flake8 package
34+
run: |
35+
python -m pip install --upgrade pip
36+
pip install flake8 pytest
37+
- name: Lint with flake8
38+
run: |
39+
# stop the build if there are Python syntax errors or undefined names
40+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
41+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
42+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
43+
- name: Install project dependencies
44+
run: |
45+
python -m pip install poetry
46+
poetry install
47+
- name: Test with pytest
48+
run: |
49+
echo ${{ github.workspace }}
50+
cd ${{ github.workspace }}/tests
51+
poetry run pytest
52+

0 commit comments

Comments
 (0)