Skip to content

Commit

Permalink
add python 3.11 and 12; ignore some paths when running workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gizemozd committed Jan 22, 2025
1 parent 8c3bf6d commit 5e95516
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
pull_request:
branches:
- main
paths:
- "seqikpy/**"
- "tests/**"

jobs:
test-and-format:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
push:
branches:
- main
paths-ignore:
- "tests/**"
- "examples/**"

env:
BASE_URL: /${{ github.event.repository.name }}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
from setuptools import setup, find_packages

setup(
python_requires=">3.8,<3.11",
python_requires=">3.8,<3.13",
description="Inverse kinematics module for Drosophila",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"ikpy>=3.3.4",
"opencv-python==4.5.*",
"opencv-python>4.5",
"numpy<2.0",
"tqdm",
"matplotlib",
Expand Down

0 comments on commit 5e95516

Please sign in to comment.