diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index dc4479d..8491c26 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -7,9 +7,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set up Python 3.10.13 - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: 3.10.13 - name: Linting @@ -25,9 +25,9 @@ jobs: python-version: [3.10.13] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/pyproject.toml b/pyproject.toml index 87c2111..fa92a9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] description = "Python package for data-driven approximations to the Koopman operator." readme = "README.rst" -requires-python = ">=3.10, <3.11" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.10", @@ -26,7 +26,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Mathematics", ] dependencies = [ - "matplotlib >3.0, <= 3.5.0", + "matplotlib ~= 3.5.0", "derivative ~= 0.6.0", "scikit-learn >= 1.1.3, <= 1.2", "numpy >=1.20, <= 1.26", @@ -51,7 +51,7 @@ dev = [ "notebook >7.0.0, <=7.0.4", "nbsphinx", "sphinx-codeautolink", - "sphinx >= 3,<=6.2.1", + "sphinx >= 3,<=7.0.0", "sphinxcontrib-apidoc", "sphinx_rtd_theme", "pre-commit",