Skip to content

Commit 04a0493

Browse files
authored
Merge to release so 1.2.9 test can publish (on tab - push tags from anywhere/anyone or tag on releases page of github) (#84)
* . * . * . * Restrict * . * v1.2.8 * Another shoul dnot release * . * 1.2.9 test
1 parent a5b8f9a commit 04a0493

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,29 @@
11
name: Publish to TestPyPI
2-
32
on:
43
push:
54
tags:
65
- 'v*'
7-
86
permissions:
97
id-token: write
108
contents: read
11-
129
jobs:
1310
test:
1411
uses: ./.github/workflows/quality.yml
15-
12+
1613
publish:
1714
needs: test
1815
runs-on: ubuntu-latest
1916
if: startsWith(github.ref, 'refs/tags/v')
20-
21-
steps:
17+
environment:
18+
name: pypi
19+
steps:
2220
- name: Download distributions
2321
uses: actions/download-artifact@v4
2422
with:
2523
name: distributions
2624
path: dist/
27-
28-
- name: Upload to TestPyPI
25+
26+
- name: Upload to PyPI
2927
uses: pypa/gh-action-pypi-publish@release/v1
3028
with:
31-
repository-url: https://test.pypi.org/legacy/
29+
repository-url: https://test.pypi.org/legacy/

fluids/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def all_submodules(with_numerics=True):
168168
return new_submodules
169169

170170

171-
__version__ = "1.2.6"
171+
__version__ = "1.2.9"
172172

173173
try:
174174
fluids_dir = os.path.dirname(__file__)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backend-path = ["_custom_build"]
55

66
[project]
77
name = "fluids"
8-
version = "1.2.6"
8+
version = "1.2.9"
99
description = "Fluid dynamics component of Chemical Engineering Design Library (ChEDL)"
1010
readme = "README.rst"
1111
requires-python = ">=3.9"
@@ -132,7 +132,7 @@ dev = [
132132

133133
[project.urls]
134134
Homepage = "https://github.com/CalebBell/fluids"
135-
Download = "https://github.com/CalebBell/fluids/tarball/1.2.6"
135+
Download = "https://github.com/CalebBell/fluids/tarball/1.2.9"
136136

137137
[tool.setuptools]
138138
packages = ["fluids"]

0 commit comments

Comments
 (0)