From ce3ac83901ae4a702215a63860b8fd469a3cdf52 Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Sat, 30 Dec 2023 02:03:45 +0000 Subject: [PATCH] Bump to 0.6.2 with Python 3.12 fix --- .github/workflows/publish.yml | 2 +- ci/test-upload/tox.ini | 2 +- docs/source/conf.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 10f99ecb..c06ae076 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.1'] + package: ['julia==0.6.2'] steps: - name: Set up Python 3.9 uses: actions/setup-python@v4 diff --git a/ci/test-upload/tox.ini b/ci/test-upload/tox.ini index 8ccc7e2c..74327d36 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.1 + pip install --index-url https://test.pypi.org/simple/ julia==0.6.2 python -c "from julia import install; install()" python -m julia.runtests -- \ diff --git a/docs/source/conf.py b/docs/source/conf.py index ee0e1f2b..bb970cb6 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.1' +version = '0.6.2' # The full version, including alpha/beta/rc tags -release = '0.6.1' +release = '0.6.2' # -- General configuration ---------------------------------------------------