From 4da126f14ad09890faa68c090f9439f3ed64144b Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish <40212131+sarahmish@users.noreply.github.com> Date: Thu, 11 Jan 2024 08:48:03 -0500 Subject: [PATCH] Update Dependency (#497) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 0.5.3.dev0 → 0.5.3.dev1 * pin alabaster --- orion/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/orion/__init__.py b/orion/__init__.py index 9644e5e4..8f058096 100644 --- a/orion/__init__.py +++ b/orion/__init__.py @@ -2,7 +2,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.5.3.dev0' +__version__ = '0.5.3.dev1' import os diff --git a/setup.cfg b/setup.cfg index 3daa8c51..1da1f454 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.3.dev0 +current_version = 0.5.3.dev1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index a7dc8dae..a516bdb0 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,9 @@ 'ipython>=6.5,<9', 'Jinja2>=2,<3', + # fails on Sphinx < v3.4 + 'alabaster<=0.7.12', + # style check 'flake8>=3.7.7,<4', 'isort>=4.3.4,<5', @@ -127,6 +130,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sintel-dev/Orion', - version='0.5.3.dev0', + version='0.5.3.dev1', zip_safe=False, )