Skip to content

Commit 7d05406

Browse files
committed
Updated so Python 3.7 is no longer supported due to pandas changes.
1 parent 8c77362 commit 7d05406

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/build.yml

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

2626
# Steps represent a sequence of tasks that will be executed as part of the job
2727
steps:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Links
5858

5959
Installation
6060
~~~~~~~~~~~~
61-
The Academic Tracker package runs under Python 3.7+. Use pip_ to install.
61+
The Academic Tracker package runs under Python 3.8+. Use pip_ to install.
6262
Starting with Python 3.4, pip_ is included by default. Be sure to use the latest
6363
version of pip as older versions are known to have issues grabbing all dependencies.
6464
Academic Tracker relies on sendmail to send emails, so if you need to use that

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def find_version():
3737
"beautifulsoup4 >= 4.9.3",
3838
"fuzzywuzzy >= 0.18.0",
3939
"python-docx >= 0.8.11",
40-
"pandas >= 0.24.2",
40+
"pandas >= 1.3.5",
4141
"openpyxl >= 2.6.2",
4242
"requests >= 2.21.0",
4343
"deepdiff >= 5.7.0"
@@ -68,7 +68,6 @@ def find_version():
6868
'Operating System :: Microsoft :: Windows',
6969
'Operating System :: MacOS',
7070
'Operating System :: POSIX :: Linux',
71-
'Programming Language :: Python :: 3.7',
7271
'Programming Language :: Python :: 3.8',
7372
'Programming Language :: Python :: 3.9',
7473
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)