Skip to content

Commit c101e07

Browse files
authored
update py-lockable dependency and drop py 3.7 support (#34)
* update py-lockable dep * drop py3.7
1 parent ce979ec commit c101e07

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

.circleci/config.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ workflows:
88
version: 2
99
test:
1010
jobs:
11-
- test-37:
12-
filters:
13-
tags:
14-
only: /.*/
1511
- test-38:
1612
filters:
1713
tags:
@@ -29,7 +25,6 @@ workflows:
2925
- test-310
3026
- test-39
3127
- test-38
32-
- test-37
3328
filters:
3429
tags:
3530
only: /^v.*/
@@ -58,9 +53,9 @@ commands:
5853
key: deps1-{{ .Branch }}-{{ checksum "setup.py" }}
5954

6055
jobs:
61-
test-37: &test-template
56+
test-38: &test-template
6257
docker:
63-
- image: circleci/python:3.7
58+
- image: circleci/python:3.8
6459
working_directory: ~/pytest-lockable
6560
steps:
6661
- setup
@@ -92,11 +87,6 @@ jobs:
9287
path: junit
9388
destination: juni
9489

95-
test-38:
96-
<<: *test-template
97-
docker:
98-
- image: circleci/python:3.8
99-
10090
test-39:
10191
<<: *test-template
10292
docker:

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@
4242
"Topic :: Software Development :: Quality Assurance",
4343
"Topic :: Software Development :: Testing",
4444
"Topic :: Utilities",
45+
'Programming Language :: Python :: 3.10',
4546
'Programming Language :: Python :: 3.9',
4647
'Programming Language :: Python :: 3.8',
47-
'Programming Language :: Python :: 3.7',
4848
"Programming Language :: Python :: 3 :: Only",
4949
],
5050
packages=find_packages(exclude=['tests']),
5151
keywords="py.test pytest lockable resource",
5252
entry_points={"pytest11": ["pytest_lockable = pytest_lockable.plugin"]},
53-
python_requires='>=3.7, <4',
53+
python_requires='>=3.8, <4',
5454
install_requires=[
5555
'pytest',
56-
'lockable>=0.9.0,<0.11.0'
56+
'lockable>=0.11.0,<0.12.0'
5757
],
5858
extras_require={ # Optional
5959
'dev': ['pynose', 'coveralls', 'pylint', 'coverage'],

0 commit comments

Comments
 (0)