Skip to content

Commit

Permalink
Pump python version. Pandas now requires 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rantahar committed Feb 21, 2024
1 parent 3fc79df commit 58af630
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
packages=find_packages(where='.'),
package_data={'niimpy': ['sampledata/*.sqlite3', 'sampledata/*.csv','config/config.ini']},
include_package_data=True,
python_requires=">=3.6",
python_requires=">=3.9",
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 58af630

Please sign in to comment.