Skip to content

Commit

Permalink
- Fix issue in querying NeetCode videos
Browse files Browse the repository at this point in the history
- Remove support for Python 3.7 (Cannot properly test for Mac)
- Add support for Python 3.12 and 3.13
  • Loading branch information
johnsutor committed Jun 2, 2024
1 parent 089cd18 commit 34802ee
Show file tree
Hide file tree
Showing 6 changed files with 258 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
pip install -r requirements.txt
- name: Examine formatting with black
run: |
pip install black
ruff . --check
pip install ruff
ruff check .
- name: Examine import ordering with isort
run: |
pip install isort
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Changelog

## 1.2.2
## 1.3.3
- 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.3.2
- Add difficulty
- Add color for difficulty in excel
- Query more Neetcode videos and update video dictionary

## 1.2.1
## 1.3.1
- Fixed issue with Neetcode titles including semicolons, resulting in ill-formatted Anki cards

## 1.2.0
Expand Down
Loading

0 comments on commit 34802ee

Please sign in to comment.