Skip to content

Commit

Permalink
bump up version for python to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 committed Nov 20, 2024
1 parent 97a5156 commit fa4d71c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: CI

on:
push:
branches: [ main, update-**, redesign_core ]
branches: [main, update-**, redesign_core]
pull_request:
branches: [ '**' ]
branches: ["**"]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
os: [macos-13, ubuntu-latest]
mpi: ["openmpi"] # [ 'mpich', 'openmpi', 'intelmpi']
mpi: ["openmpi"] # [ 'mpich', 'openmpi', 'intelmpi']
include:
- os: macos-13
path: ~/Library/Caches/pip
Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
cache: "poetry"
- uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
with:
Expand All @@ -47,7 +47,7 @@ jobs:
ffmpeg-version: release
# Target architecture of the ffmpeg executable to install. Defaults to the
# system architecture. Only x64 and arm64 are supported (arm64 only on Linux).
architecture: ''
architecture: ""
# Linking type of the binaries. Use "shared" to download shared binaries and
# "static" for statically linked ones. Shared builds are currently only available
# for windows releases. Defaults to "static"
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -44,7 +43,7 @@ miv_zip_results = "miv.machinary.zip_results:zip_results"


[tool.poetry.dependencies]
python = ">=3.9,<=3.12"
python = ">=3.10,<=3.12"
scipy = "^1.9.1"
elephant = "^1.0.0"
matplotlib = "^3.5.2"
Expand Down

0 comments on commit fa4d71c

Please sign in to comment.