diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index a790d5bb..2f3f7c98 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,7 +11,12 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11','3.12'] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] + include: + - os: macos-latest + python-version: '3.8' + - os: macos-latest + python-version: '3.12' steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/minimum.yml b/.github/workflows/minimum.yml index ecdc2d9b..4902098c 100644 --- a/.github/workflows/minimum.yml +++ b/.github/workflows/minimum.yml @@ -11,7 +11,12 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11','3.12'] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] + include: + - os: macos-latest + python-version: '3.8' + - os: macos-latest + python-version: '3.12' steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 53fb844e..4345632e 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -11,7 +11,12 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11','3.12'] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] + include: + - os: macos-latest + python-version: '3.8' + - os: macos-latest + python-version: '3.12' steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 44912571..baf737d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,14 +21,13 @@ license = { text = 'BSL-1.1' } requires-python = '>=3.8,<3.13' readme = 'README.md' dependencies = [ - "numpy>=1.20.0;python_version<'3.10'", + "numpy>=1.21.0;python_version<'3.10'", "numpy>=1.23.3,<2;python_version>='3.10' and python_version<'3.12'", "numpy>=1.26.0,<2;python_version>='3.12'", - "pandas>=1.1.3;python_version<'3.10'", - "pandas>=1.3.4;python_version>='3.10' and python_version<'3.11'", + "pandas>=1.4.0;python_version<'3.11'", "pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'", "pandas>=2.1.1;python_version>='3.12'", - "torch>=1.8.0;python_version<'3.10'", + "torch>=1.9.0;python_version<'3.10'", "torch>=1.11.0;python_version>='3.10' and python_version<'3.11'", "torch>=2.0.0;python_version>='3.11' and python_version<'3.12'", "torch>=2.2.0;python_version>='3.12'",