Skip to content

Commit 29f7d60

Browse files
authored
fix(release): remove test-pypi release step
1 parent 0635a33 commit 29f7d60

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/python-package.yml

-6
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,6 @@ jobs:
6161
python -m pip install build
6262
- name: Build dist
6363
run: python -m build --sdist --wheel --outdir dist/ .
64-
- name: Publish package (TEST)
65-
uses: pypa/gh-action-pypi-publish@release/v1
66-
with:
67-
user: __token__
68-
password: ${{ secrets.PYPI_TEST_API_TOKEN }}
69-
repository_url: https://test.pypi.org/legacy/
7064
- name: Publish package (PRODUCTION)
7165
if: startsWith(github.ref, 'refs/tags')
7266
uses: pypa/gh-action-pypi-publish@release/v1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
name='cimpyorm', # Required
2828
# https://www.python.org/dev/peps/pep-0440/
2929
# https://packaging.python.org/en/latest/single_source_version.html
30-
version='0.10.0', # Required
30+
version='0.10.1', # Required
3131
# https://packaging.python.org/specifications/core-metadata/#summary
3232
description="A database-backed ORM for CIM datasets.", # Required
3333
# https://packaging.python.org/specifications/core-metadata/#description-optional

0 commit comments

Comments
 (0)