Skip to content

Commit

Permalink
ThorAxe does not support Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
diegozea committed Jan 31, 2023
1 parent eff17be commit d483df8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.8", "3.9"] # https://devguide.python.org/versions/#versions

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ environment:
- PYTHON: "C:\\Python38-x64" # end-of-life 2024-10
PYTHON_VERSION: "3.8"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python38-x64" # end-of-life 2025-10
PYTHON_VERSION: "3.8"
PYTHON_ARCH: "64"
# https://devguide.python.org/versions/#versions

install:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'License :: OSI Approved :: MIT License',
'Natural Language :: English', 'Programming Language :: Python :: 3'
],
python_requires=">=3.6.1,<3.11", # pandas & numpy
python_requires=">=3.6.1,<3.10", # pandas & numpy
entry_points={
'console_scripts': [
'transcript_query=thoraxe.transcript_query:main',
Expand Down

0 comments on commit d483df8

Please sign in to comment.