Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/create-conda-envs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,22 @@ concurrency:

jobs:
test_conda_install:
# Workflow is currently broken
# https://github.com/cylc/cylc-doc/pull/788#issuecomment-2573610197
if: false
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python: [3.7, 3.8, 3.9]
python: ['3.9']
steps:
- name: checkout cylc-doc
uses: actions/checkout@v5

- name: configure python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: ${{ matrix.python }}

- name: install setuptools
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: test

on:
push:
branches: [master]
branches:
- master
- '8.*.x'
pull_request:
workflow_dispatch:
inputs:
Expand Down
4 changes: 2 additions & 2 deletions src/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Via Conda (recommended)
.. admonition:: Supported Python versions

* cylc-flow supports Python 3.8+.
* cylc-uiserver currently only supports Python 3.8-3.9.
* cylc-uiserver supports Python 3.9+.

.. tip::

Expand Down Expand Up @@ -49,7 +49,7 @@ Via Pip (+npm)
.. admonition:: Supported Python versions

* cylc-flow supports Python 3.7+.
* cylc-uiserver currently only supports Python 3.8-3.9.
* cylc-uiserver supports Python 3.9+.

.. important::

Expand Down
16 changes: 13 additions & 3 deletions src/reference/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ For more detail see the component changelogs:

----------

Cylc 8.5
--------

.. TODO: Modify these URL's and uncomment this block before release

.. admonition:: Cylc Components
Expand All @@ -36,6 +33,19 @@ Cylc 8.5
:cylc-rose: `1.5 <https://github.com/cylc/cylc-rose/blob/master/CHANGES.md>`__
:rose: `2.4 <https://github.com/metomi/rose/blob/master/CHANGES.md>`__


Cylc 8.5
--------

.. admonition:: Cylc Components
:class: hint

:cylc-flow: `8.5 <https://github.com/cylc/cylc-flow/blob/master/CHANGES.md>`__
:cylc-ui: `2.8 <https://github.com/cylc/cylc-ui/blob/master/CHANGES.md>`__
:cylc-uiserver: `1.7 <https://github.com/cylc/cylc-uiserver/blob/master/CHANGES.md>`__
:cylc-rose: `1.6 <https://github.com/cylc/cylc-rose/blob/master/CHANGES.md>`__
:rose: `2.5 <https://github.com/metomi/rose/blob/master/CHANGES.md>`__

More task information in the GUI (and Tui)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
Loading