From 69b734f117e489904a07d20f46c8f96b56577779 Mon Sep 17 00:00:00 2001 From: Miles Cranmer Date: Mon, 27 Feb 2023 22:56:42 -0700 Subject: [PATCH] Bump version to 0.6.1 with Julia 1.9 fix (#524) --- .github/workflows/publish.yml | 2 +- ci/test-upload/tox.ini | 2 +- docs/source/conf.py | 4 ++-- src/julia/release.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bb785e22..80c77b8f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: # using `matrix` to define a constant - package: ['julia==0.6.0'] + package: ['julia==0.6.1'] steps: - name: Set up Python 3.9 uses: actions/setup-python@v1 diff --git a/ci/test-upload/tox.ini b/ci/test-upload/tox.ini index acc6ed08..8ccc7e2c 100644 --- a/ci/test-upload/tox.ini +++ b/ci/test-upload/tox.ini @@ -16,7 +16,7 @@ deps = commands = shell-retry --backoff=2 --interval-max=20 --retry-count=30 --verbose -- \ - pip install --index-url https://test.pypi.org/simple/ julia==0.6.0 + pip install --index-url https://test.pypi.org/simple/ julia==0.6.1 python -c "from julia import install; install()" python -m julia.runtests -- \ diff --git a/docs/source/conf.py b/docs/source/conf.py index 0142ea44..ee0e1f2b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,9 +25,9 @@ author = 'The Julia and IPython development teams' # The short X.Y version -version = '0.6.0' +version = '0.6.1' # The full version, including alpha/beta/rc tags -release = '0.6.0' +release = '0.6.1' # -- General configuration --------------------------------------------------- diff --git a/src/julia/release.py b/src/julia/release.py index f014f579..b91b9912 100644 --- a/src/julia/release.py +++ b/src/julia/release.py @@ -1,5 +1,5 @@ # This file is executed via setup.py and imported via __init__.py -__version__ = "0.6.0" +__version__ = "0.6.1" # For Python versioning scheme, see: # https://www.python.org/dev/peps/pep-0440/#version-scheme