Skip to content

Commit c768160

Browse files
committed
Update test dependencies and adjust Python version requirement
1 parent 1d6f453 commit c768160

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25+
pip install pytest>=7.0.0,<8.0.0 pytest-cov>=4.1.0,<5.0.0 pytest-mock>=3.10.0
2526
pip install -e ".[test]"
2627
2728
- name: Run tests

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
long_description = fh.read()
66

77
setup(
8-
name="aireview",
8+
name="aireview",
99
version="1.1.0",
1010
author="Set Kyar Wa Lar",
1111
author_email="me@setkyar.com",
@@ -25,7 +25,7 @@
2525
"Topic :: Software Development :: Quality Assurance",
2626
],
2727
packages=find_packages(),
28-
python_requires=">=3.7",
28+
python_requires=">=3.8",
2929
install_requires=[
3030
"click>=8.1.8",
3131
"openai>=1.62.0",
@@ -38,9 +38,9 @@
3838
},
3939
extras_require={
4040
'test': [
41-
'pytest>=8.3.4',
42-
'pytest-cov>=6.0.0',
43-
'pytest-mock>=3.14.0',
41+
'pytest>=7.0.0,<8.0.0',
42+
'pytest-cov>=4.1.0,<5.0.0',
43+
'pytest-mock>=3.10.0',
4444
],
4545
},
4646
)

0 commit comments

Comments
 (0)