Skip to content

Commit 81f9cc5

Browse files
committed
Release version 0.0.0.dev48
1 parent f47f483 commit 81f9cc5

11 files changed

Lines changed: 13 additions & 11 deletions

File tree

.github/workflows/_pkg_publish.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
push:
99
paths:
10-
- 'pyproject.toml'
10+
- 'pkg/pyproject.toml'
1111

1212
jobs:
1313

@@ -23,13 +23,14 @@ jobs:
2323

2424
- name: 'Build sdist'
2525
run: |
26+
cd pkg
2627
pipx run build --sdist --wheel --outdir dist/
2728
2829
- name: 'Upload package'
2930
uses: pypa/gh-action-pypi-publish@release/v1
3031
# https://github.com/marketplace/actions/pypi-publish
3132
with:
32-
packages-dir: dist
33+
packages-dir: pkg/dist
3334
verify-metadata: false
3435
verbose: true
3536
print-hash: true
@@ -47,15 +48,16 @@ jobs:
4748

4849
- name: 'Build sdist'
4950
run: |
51+
cd pkg
5052
pipx run build --sdist --wheel --outdir dist/
5153
5254
- name: 'Upload package'
5355
uses: pypa/gh-action-pypi-publish@release/v1
5456
# https://github.com/marketplace/actions/pypi-publish
5557
with:
56-
packages-dir: dist
58+
packages-dir: pkg/dist
5759
repository-url: https://test.pypi.org/legacy/
5860
verify-metadata: false
5961
verbose: true
6062
print-hash: true
61-
skip-existing: false
63+
skip-existing: false

pyproject.toml renamed to pkg/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ namespaces = true
1515

1616
# ----------------------------------------- Project Metadata -------------------------------------
1717
[project]
18-
version = "0.0.0.dev47"
18+
version = "0.0.0.dev48"
1919
name = "PyShellMan"
2020
requires-python = ">=3.10"
2121
dependencies = [
2222
"rich >= 13.5",
23-
"MDit == 0.0.0.dev57",
24-
"ExceptionMan == 0.0.0.dev57",
23+
"MDit == 0.0.0.dev58",
24+
"ExceptionMan == 0.0.0.dev58",
2525
"ANSI-SGR == 0.0.0.dev10",
2626
]

pkg/requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
rich >= 13.5
2+
MDit == 0.0.0.dev58
3+
ExceptionMan == 0.0.0.dev58
4+
ANSI-SGR == 0.0.0.dev10

0 commit comments

Comments
 (0)