Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7']
python-version: ['3.8']
steps:
- uses: actions/checkout@v3
- name: Fix Broken Python 3.7.17 (no _bz2 module)
run: rm -rf $RUNNER_TOOL_CACHE/Python/3.7.17
shell: bash
- name: Set Up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -55,12 +52,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Fix Broken Python 3.7.17 (no _bz2 module)
run: rm -rf $RUNNER_TOOL_CACHE/Python/3.7.17
shell: bash
- name: Set Up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -109,12 +103,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Fix Broken Python 3.7.17 (no _bz2 module)
run: rm -rf $RUNNER_TOOL_CACHE/Python/3.7.17
shell: bash
- name: Set Up Python
uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
channels:
- conda-forge
dependencies:
- python>=3.7
- numpy>=1.17
- python>=3.8
- numpy>=1.18
- scipy>=1.5
- numba>=0.54
- numba>=0.55.2
- pandas>=0.20.0
- flake8>=3.7.7
- flake8-docstrings>=1.5.0
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numpy>=1.17
numpy>=1.18
scipy>=1.5
numba>=0.54
numba>=0.55.2
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_extras_require():

configuration = {
"version": "1.11.1",
"python_requires=": ">=3.7",
"python_requires=": ">=3.8",
"author": "Sean M. Law",
"author_email": "seanmylaw@gmail.com",
"description": (
Expand All @@ -50,15 +50,15 @@ def get_extras_require():
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
"keywords": "time series matrix profile motif discord",
"url": "https://github.com/TDAmeritrade/stumpy",
"maintainer": "Sean M. Law",
"maintainer_email": "seanmylaw@gmail.com",
"license": "3-clause BSD License",
"packages": ["stumpy"],
"install_requires": ["numpy >= 1.17", "scipy >= 1.5", "numba >= 0.54"],
"install_requires": ["numpy >= 1.18", "scipy >= 1.5", "numba >= 0.55.2"],
"ext_modules": [],
"cmdclass": {},
"tests_require": ["pytest"],
Expand Down