Skip to content

Commit

Permalink
Merge pull request #947 from skoudoro/clean-setup-files
Browse files Browse the repository at this point in the history
RF: update some settings files
  • Loading branch information
maharshi-gor authored Dec 11, 2024
2 parents 2008164 + da8876b commit d57df65
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: code format

on:
push:
branches: [master]
branches: [master, v2]
pull_request:
branches: [master]
branches: [master, v2]

jobs:
pre-commit:
Expand All @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.10']
python-version: ['3.12']
requires: ['latest']

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Codespell

on:
push:
branches: [master]
branches: [master, v2]
pull_request:
branches: [master]
branches: [master, v2]

jobs:
codespell:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
python-version: [3.11]
steps:
- uses: actions/checkout@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: FURY Tests

on:
push:
branches: [ master ]
branches: [ master, v2 ]
pull_request:
branches: [ master ]
branches: [ master, v2 ]
schedule:
- cron: '0 2 * * Mon' # weekly

Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, '3.10', 3.11, 3.12]
python-version: ['3.10', 3.11, 3.12, 3.13]
os: [ubuntu-latest, macos-latest, windows-latest]
platform: [x64]
install-type: [pip, ] # conda]
Expand Down
23 changes: 10 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "fury"
description = "FURY - Free Unified Rendering in pYthon. A free and open-source software library for Scientific Visualization and 3D animations"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
license.file="LICENSE"
keywords = ["Scientific Visualization", "shaders", "animation", "simulation",
"Physically based rendering", "3D", "3D rendering", "networks",
Expand All @@ -33,22 +33,19 @@ classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]

dependencies = [
"numpy >=1.15",
"scipy>=1.0",
"vtk>=9.1.0",
"pillow>=5.4.1",
"packaging >=17.0",
"pygltflib>=1.15.3",
"aiohttp>=3.8.4",
"numpy>=2.0",
"scipy>=1.13.0",
"pillow>=10.4.0",
"packaging>=23.0",
"lazy_loader>=0.4",
]

Expand All @@ -62,14 +59,14 @@ Tracker = "https://github.com/fury-gl/fury/issues"
[project.optional-dependencies]

all = ["fury[plot, dev, doc, medical, style, test, typing]"]
plot = ["matplotlib>=1.5.3", ]
plot = ["matplotlib>=3.9.0", ]
medical = ["dipy", "nibabel"]
dev = [
"gitpython",
"twine",
]
doc = [
"matplotlib >= 1.5.3",
"fury[plot]",
"numpydoc",
"sphinx >=6.1.2",
"texext",
Expand Down

0 comments on commit d57df65

Please sign in to comment.