Commit a5d1e55 1 parent 860dbe3 commit a5d1e55 Copy full SHA for a5d1e55
File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 39
39
- name : Install requirements (Python 3)
40
40
run : pip install -r requirements/ci.txt -r requirements/dev.txt
41
41
- name : Install pdfly
42
- run : pip install .
42
+ run : |
43
+ # We want to install the minimal versions of the dependencies,
44
+ # to ensure that they remain compatible:
45
+ sed -i '/dependencies = \[/,/\]/s/>=/==/' pyproject.toml
46
+ pip install .
43
47
44
48
- name : Run tests
45
49
run : pytest -vv
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ description = "A pure-python CLI application to manipulate PDF files"
10
10
readme = " README.md"
11
11
dynamic = [" version" ]
12
12
license = { file = " LICENSE" }
13
- requires-python = " >=3.6.1 "
13
+ requires-python = " >=3.7.0 "
14
14
15
15
# https://pypi.org/pypi?%3Aaction=list_classifiers
16
16
classifiers = [
@@ -22,6 +22,7 @@ classifiers = [
22
22
" Operating System :: OS Independent" ,
23
23
" Programming Language :: Python :: 3" ,
24
24
" Programming Language :: Python :: 3 :: Only" ,
25
+ # We do not test Python 3.7 in CI, so support is not guaranteed
25
26
" Programming Language :: Python :: 3.7" ,
26
27
" Programming Language :: Python :: 3.8" ,
27
28
" Programming Language :: Python :: 3.9" ,
You can’t perform that action at this time.
0 commit comments