Skip to content

Commit 83cbb80

Browse files
committed
Merge remote-tracking branch 'upstream/master' into 8.4.x-sync
2 parents 9b12a33 + 7ee2004 commit 83cbb80

File tree

94 files changed

+1235
-758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+1235
-758
lines changed

.github/workflows/2_auto_publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: cylc/release-actions/build-python-package@v1
3939

4040
- name: Publish distribution to PyPI
41-
uses: pypa/gh-action-pypi-publish@v1.12.2
41+
uses: pypa/gh-action-pypi-publish@release/v1
4242
with:
4343
user: __token__ # uses the API token feature of PyPI - least permissions possible
4444
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/branch_sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414

1515
jobs:
1616
sync:
17+
if: github.repository_owner == 'cylc' || github.event_name != 'schedule'
1718
uses: cylc/release-actions/.github/workflows/branch-sync.yml@v1
1819
with:
1920
head_branch: ${{ inputs.head_branch }}

.github/workflows/test_conda-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ concurrency:
1515

1616
jobs:
1717
test_conda_install:
18+
if: github.repository_owner == 'cylc' || github.event_name != 'schedule'
1819
runs-on: ubuntu-latest
1920
timeout-minutes: 10
2021
strategy:

changes.d/6117.feat.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Create `workflow/share/cycle/<cycle>` and make it available to jobs as `$CYLC_TASK_SHARE_CYCLE_DIR`.

changes.d/6549.fix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Removed cylc.vim - you should use https://github.com/cylc/cylc.vim instead.

changes.d/6561.feat.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Tui now displays task states and flow numbers in context menus. Tasks in flow=None will be displayed in gray.

changes.d/6570.feat.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Using `cylc set` without specifying `--out` on a task where success is optional now sets success pathway outputs instead of doing nothing.

changes.d/6625.fix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Efficiency improvement: avoid storing duplicate information on graph triggers.

conda-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
dependencies:
55
- ansimarkup >=1.0.0
6-
- async-timeout>=3.0.0
6+
- async-timeout>=3.0.0 # [py<3.11]
77
- colorama >=0.4,<1.0
88
- graphene >=2.1,<3
99
- graphviz # for static graphing

cylc/flow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def environ_init():
5252

5353
environ_init()
5454

55-
__version__ = '8.4.2.dev'
55+
__version__ = '8.5.0.dev'
5656

5757

5858
def iter_entry_points(entry_point_name):

0 commit comments

Comments
 (0)