Skip to content

Commit 273b336

Browse files
committed
Release version 0.0.0.dev71
1 parent 7635231 commit 273b336

33 files changed

+12
-10
lines changed

.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
@@ -17,12 +17,12 @@ namespaces = true
1717
# ----------------------------------------- Project Metadata -------------------------------------
1818
#
1919
[project]
20-
version = "0.0.0.dev70"
20+
version = "0.0.0.dev71"
2121
name = "PyLinks"
2222
dependencies = [
2323
"requests >= 2.31.0, < 3",
24-
"ExceptionMan == 0.0.0.dev57",
25-
"MDit == 0.0.0.dev57",
24+
"ExceptionMan == 0.0.0.dev58",
25+
"MDit == 0.0.0.dev58",
2626
]
2727
requires-python = ">=3.10"
2828

pkg/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
requests >= 2.31.0, < 3
2+
ExceptionMan == 0.0.0.dev58
3+
MDit == 0.0.0.dev58
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)