diff --git a/.github/workflows/2_auto_publish_release.yml b/.github/workflows/2_auto_publish_release.yml index 5f2d6b21..011f1484 100644 --- a/.github/workflows/2_auto_publish_release.yml +++ b/.github/workflows/2_auto_publish_release.yml @@ -38,7 +38,7 @@ jobs: uses: cylc/release-actions/build-python-package@v1 - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.5 + uses: pypa/gh-action-pypi-publish@v1.8.8 with: user: __token__ # uses the API token feature of PyPI - least permissions possible password: ${{ secrets.PYPI_TOKEN }} diff --git a/CHANGES.md b/CHANGES.md index 28f92b92..86f4cbdf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,7 +6,7 @@ creating a new release entry be sure to copy & paste the span tag with the updated. Only the first match gets replaced, so it's fine to leave the old ones in. --> -## __cylc-rose-1.2.1 (Upcoming)__ +## __cylc-rose-1.3.0 (Upcoming)__ ### Fixes diff --git a/cylc/rose/__init__.py b/cylc/rose/__init__.py index 17d57d04..bf22977e 100644 --- a/cylc/rose/__init__.py +++ b/cylc/rose/__init__.py @@ -205,4 +205,4 @@ """ -__version__ = '1.2.1.dev' +__version__ = '1.3.0.dev' diff --git a/setup.cfg b/setup.cfg index a07a20c3..43a86b85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -55,8 +55,8 @@ packages = find_namespace: python_requires = >=3.7 include_package_data = True install_requires = - metomi-rose==2.0.* - cylc-flow==8.1.* + metomi-rose==2.1.* + cylc-flow==8.2.* metomi-isodatetime jinja2 diff --git a/tests/functional/test_reinstall.py b/tests/functional/test_reinstall.py index 6b68b9f0..db4c5e46 100644 --- a/tests/functional/test_reinstall.py +++ b/tests/functional/test_reinstall.py @@ -38,7 +38,7 @@ from cylc.flow.pathutil import get_workflow_run_dir from cylc.rose.utilities import ( ROSE_ORIG_HOST_INSTALLED_OVERRIDE_STRING as ROHIOS) -from cylc.flow.workflow_files import reinstall_workflow +from cylc.flow.install import reinstall_workflow HOST = get_host()