dataorc 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dataorc-0.1.1/.github/workflows/release.yml +65 -0
- dataorc-0.1.1/.python-version +1 -0
- dataorc-0.1.1/.release-please-manifest.json +1 -0
- dataorc-0.1.1/CHANGELOG.md +15 -0
- dataorc-0.1.1/PKG-INFO +3 -0
- dataorc-0.1.1/README.md +1 -0
- dataorc-0.1.1/pyproject.toml +7 -0
- dataorc-0.1.1/release-please-config.json +10 -0
- dataorc-0.1.1/src/dataorc/__init__.py +1 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release-please:
|
|
9
|
+
name: Release Please
|
|
10
|
+
runs-on: ubuntu-24.04
|
|
11
|
+
permissions:
|
|
12
|
+
contents: write # Required to update changelog files.
|
|
13
|
+
issues: write # Required to label issues.
|
|
14
|
+
pull-requests: write # Required to create release PRs.
|
|
15
|
+
steps:
|
|
16
|
+
- name: Release Please
|
|
17
|
+
id: release-please
|
|
18
|
+
uses: googleapis/release-please-action@c2a5a2bd6a758a0937f1ddb1e8950609867ed15c
|
|
19
|
+
with:
|
|
20
|
+
config-file: release-please-config.json
|
|
21
|
+
manifest-file: .release-please-manifest.json
|
|
22
|
+
outputs:
|
|
23
|
+
releases_created: ${{ steps.release-please.outputs.releases_created }}
|
|
24
|
+
paths_released: ${{ steps.release-please.outputs.paths_released }}
|
|
25
|
+
|
|
26
|
+
python-build:
|
|
27
|
+
name: Python Build
|
|
28
|
+
needs: release-please
|
|
29
|
+
if: needs.release-please.outputs.releases_created == 'true'
|
|
30
|
+
strategy:
|
|
31
|
+
matrix:
|
|
32
|
+
path: ${{ fromJSON(needs.release-please.outputs.paths_released) }}
|
|
33
|
+
runs-on: ubuntu-24.04
|
|
34
|
+
environment: pypi
|
|
35
|
+
permissions:
|
|
36
|
+
contents: read # Required to checkout the repository.
|
|
37
|
+
id-token: write # Required for PyPI Trusted Publishing.
|
|
38
|
+
defaults:
|
|
39
|
+
run:
|
|
40
|
+
shell: bash
|
|
41
|
+
working-directory: ${{ matrix.path }}
|
|
42
|
+
steps:
|
|
43
|
+
- name: Checkout
|
|
44
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
45
|
+
with:
|
|
46
|
+
persist-credentials: false
|
|
47
|
+
|
|
48
|
+
- name: Setup Python
|
|
49
|
+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
|
|
50
|
+
with:
|
|
51
|
+
python-version-file: .python-version
|
|
52
|
+
|
|
53
|
+
- name: Install dependecies
|
|
54
|
+
run: python -m pip install --upgrade pip build
|
|
55
|
+
|
|
56
|
+
- name: Generate distributions
|
|
57
|
+
# The build command will generate a source distribution (`.tar.gz` file)
|
|
58
|
+
# and a built distribution (`.whl` file) in the `dist` directory.
|
|
59
|
+
# Ref: https://packaging.python.org/en/latest/tutorials/packaging-projects/#generating-distribution-archives
|
|
60
|
+
run: python -m build
|
|
61
|
+
|
|
62
|
+
- name: Publish to PyPI
|
|
63
|
+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
|
|
64
|
+
with:
|
|
65
|
+
packages-dir: ${{ matrix.path }}/dist
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12.3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{".":"0.1.1"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.1](https://github.com/equinor/dataorc/compare/dataorc-v0.1.0...dataorc-v0.1.1) (2025-10-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove reference to reusable workflow ([dec4dc5](https://github.com/equinor/dataorc/commit/dec4dc5a98ff6ef0bf36bd446063682ff475ddf7))
|
|
9
|
+
|
|
10
|
+
## 0.1.0 (2025-10-03)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add initial root package ([#1](https://github.com/equinor/dataorc/issues/1)) ([b9d53e1](https://github.com/equinor/dataorc/commit/b9d53e1190db578c7a61e7df5e21db454bc2265c))
|
dataorc-0.1.1/PKG-INFO
ADDED
dataorc-0.1.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# dataorc
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.1"
|