Skip to content

Commit 1a41df0

Browse files
authored
Update setup.py (#32)
* Update setup.py
1 parent b14150c commit 1a41df0

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
platform: [ubuntu-latest, windows-latest, macos-latest]
24-
python-version: [3.8, 3.9]
24+
python-version: [3.9, "3.10"]
2525

2626
steps:
2727
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setuptools.setup(
1414
name="dlc2kinematics",
15-
version="0.0.4",
15+
version="0.0.5",
1616
author="Mackenzie Mathis Lab Members",
1717
author_email="[email protected]",
1818
description="Library for kinematic analysis of DeepLabCut outputs",
@@ -25,7 +25,7 @@
2525
"ipython",
2626
"ipython-genutils",
2727
"matplotlib>=3.0.3",
28-
"numpy<=1.21",
28+
"numpy",
2929
"pandas>=1.0",
3030
"python-dateutil",
3131
"pyyaml",

src/dlc2kinematics/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
https://github.com/AdaptiveMotorControlLab/dlc2kinematics/
55
"""
66

7-
__version__ = "0.0.4"
7+
__version__ = "0.0.5"
88
VERSION = __version__

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py{38,39}-{linux,macos,windows}
3+
envlist = py{39}-{linux,macos,windows}
44
isolated_build=true
55

66
[gh-actions]
77
python =
8-
3.8: py38
98
3.9: py39
109

1110
[gh-actions:env]

0 commit comments

Comments
 (0)