diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index e284d1b7..eb57298c 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -16,7 +16,7 @@ jobs: name: Syncer runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: micnncim/action-label-syncer@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/doc/source/conf.py b/doc/source/conf.py index 26ae3f81..d7c0cba0 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -50,7 +50,7 @@ # Intersphinx mapping intersphinx_mapping = { - "python": ("https://docs.python.org/3", None), + "python": ("https://docs.python.org/3.11", None), # kept here as an example # "scipy": ("https://docs.scipy.org/doc/scipy/reference", None), # "numpy": ("https://numpy.org/devdocs", None), diff --git a/pyproject.toml b/pyproject.toml index 12fecc68..2c86ae07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,26 +29,26 @@ classifiers = [ dependencies = [ "importlib-metadata>=4.0,<5; python_version<='3.8'", "requests", - "openai", + "openai<1", "jsonschema", "gitpython", ] [project.optional-dependencies] tests = [ - "pytest==7.4.0", + "pytest==7.4.3", "pytest-cov==4.1.0", - "pytest-retry==1.3.0", + "pytest-retry==1.5.0", "requests==2.31.0", - "openai==0.27.8", - "jsonschema==4.19.0", - "gitpython==3.1.32", + "openai==0.28.1", + "jsonschema==4.19.2", + "gitpython==3.1.40", ] doc = [ - "ansys_sphinx_theme==0.10.2", - "numpydoc==1.5.0", - "Sphinx==7.1.2", - "sphinx-autoapi==2.1.1", + "ansys_sphinx_theme==0.12.4", + "numpydoc==1.6.0", + "Sphinx==7.2.6", + "sphinx-autoapi==3.0.0", "Sphinx-copybutton==0.5.2", ]