Skip to content

Commit

Permalink
finalized
Browse files Browse the repository at this point in the history
  • Loading branch information
pswpswpsw committed Oct 31, 2023
1 parent 3c63751 commit d5c5ce2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit d5c5ce2

Please sign in to comment.