Skip to content

Commit 34802ee

Browse files
committed
- Fix issue in querying NeetCode videos
- Remove support for Python 3.7 (Cannot properly test for Mac) - Add support for Python 3.12 and 3.13
1 parent 089cd18 commit 34802ee

File tree

6 files changed

+258
-24
lines changed

6 files changed

+258
-24
lines changed

.github/workflows/check-style.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
pip install -r requirements.txt
2828
- name: Examine formatting with black
2929
run: |
30-
pip install black
31-
ruff . --check
30+
pip install ruff
31+
ruff check .
3232
- name: Examine import ordering with isort
3333
run: |
3434
pip install isort

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
17-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: actions/checkout@v3

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Changelog
22

3-
## 1.2.2
3+
## 1.3.3
4+
- Fix issue in querying NeetCode videos
5+
- Remove support for Python 3.7 (Cannot properly test for Mac)
6+
- Add support for Python 3.12 and 3.13
7+
8+
## 1.3.2
49
- Add difficulty
510
- Add color for difficulty in excel
611
- Query more Neetcode videos and update video dictionary
712

8-
## 1.2.1
13+
## 1.3.1
914
- Fixed issue with Neetcode titles including semicolons, resulting in ill-formatted Anki cards
1015

1116
## 1.2.0

0 commit comments

Comments
 (0)