Skip to content

Commit 4eb3ff0

Browse files
committed
D. J.:
- Improved README.md - Added development packages to requirements.txt - Updated github workflows
1 parent 0f34653 commit 4eb3ff0

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/check-format.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
pip install -r requirements.txt
27-
pip install flake8
2827
- name: Check Format with flake8
2928
run: |
3029
# stop the build if there are Python syntax errors or undefined names

.github/workflows/run-unittests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
pip install -r requirements.txt
27-
pip install pytest
2827
- name: Run Unittests
2928
run: |
3029
pytest

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
<h1>
33
💡 Awesome Python Leetcode
44
<br>
5+
<span style="font-size: large">
6+
Awesome Leetcode problems and solutions written in Python!
7+
</span>
8+
<br>
59
<a href="https://awesome.re">
610
<img src="https://awesome.re/badge.svg">
711
</a>
@@ -20,8 +24,6 @@
2024
</h1>
2125
</div>
2226

23-
This repository contains awesome LeetCode problems and solutions written in Python to prepare for coding interviews.
24-
2527
## Leetcode Study Plans 📚
2628

2729
### Introduction To

requirements.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
numpy>=2.2.4
1+
numpy>=2.2.4
2+
pytest>=8.3.5
3+
pytest-cov>=6.1.1
4+
flake8>=7.2.0
5+
black>=25.1.0
6+
twine>=6.1.0
7+
build>=1.2.2.post1

0 commit comments

Comments
 (0)