Skip to content

Commit 5e95516

Browse files
committed
add python 3.11 and 12; ignore some paths when running workflow
1 parent 8c3bf6d commit 5e95516

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/CI.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
pull_request:
88
branches:
99
- main
10+
paths:
11+
- "seqikpy/**"
12+
- "tests/**"
1013

1114
jobs:
1215
test-and-format:

.github/workflows/deploy-pages.yml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
push:
66
branches:
77
- main
8+
paths-ignore:
9+
- "tests/**"
10+
- "examples/**"
811

912
env:
1013
BASE_URL: /${{ github.event.repository.name }}

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
from setuptools import setup, find_packages
55

66
setup(
7-
python_requires=">3.8,<3.11",
7+
python_requires=">3.8,<3.13",
88
description="Inverse kinematics module for Drosophila",
99
long_description=open("README.md").read(),
1010
long_description_content_type="text/markdown",
1111
install_requires=[
1212
"ikpy>=3.3.4",
13-
"opencv-python==4.5.*",
13+
"opencv-python>4.5",
1414
"numpy<2.0",
1515
"tqdm",
1616
"matplotlib",

0 commit comments

Comments
 (0)