Skip to content

Commit

Permalink
updates python versions (#20)
Browse files Browse the repository at this point in the history
* updates python versions

* fixes gh actions syntax

* removes Windows support due to tensorflow
  • Loading branch information
Trybnetic committed Feb 1, 2024
1 parent af9949f commit 234aaa6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: tests
name: Run Unit Tests

on:
push:
Expand All @@ -13,8 +13,12 @@ jobs:
name: ${{ matrix.os }} ${{ matrix.python-version }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [3.8, 3.9]
os: [
ubuntu-latest,
#windows-latest,
macOS-latest
]
python-version: ['3.9', '3.10']
poetry-version: [1.1.13]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
15 changes: 10 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "paat"
version = "1.0.0-beta.1"
version = "1.0.0-beta.2"
description = "A comprehensive toolbox to analyse and model raw physical activity data"

license = "MIT"
Expand All @@ -17,12 +17,17 @@ homepage = "https://github.com/Trybnetic/paat"
keywords = ["medical-informatics", "physical-activity",
"health-science", "actigraph", "accelerometry"]

classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research']
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
# 'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
]

[tool.poetry.dependencies]
python = ">=3.8,<3.10" # Compatible python versions must be declared here
python = ">=3.9,<3.11" # Compatible python versions must be declared here
pandas = "^1.2.4"
scipy = "^1.6.2"
psutil = "^5.8.0"
Expand Down

0 comments on commit 234aaa6

Please sign in to comment.