Skip to content

Commit

Permalink
update py-lockable dependency and drop py 3.7 support (#34)
Browse files Browse the repository at this point in the history
* update py-lockable dep
* drop py3.7
  • Loading branch information
jupe authored Jan 24, 2024
1 parent ce979ec commit c101e07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
14 changes: 2 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ workflows:
version: 2
test:
jobs:
- test-37:
filters:
tags:
only: /.*/
- test-38:
filters:
tags:
Expand All @@ -29,7 +25,6 @@ workflows:
- test-310
- test-39
- test-38
- test-37
filters:
tags:
only: /^v.*/
Expand Down Expand Up @@ -58,9 +53,9 @@ commands:
key: deps1-{{ .Branch }}-{{ checksum "setup.py" }}

jobs:
test-37: &test-template
test-38: &test-template
docker:
- image: circleci/python:3.7
- image: circleci/python:3.8
working_directory: ~/pytest-lockable
steps:
- setup
Expand Down Expand Up @@ -92,11 +87,6 @@ jobs:
path: junit
destination: juni

test-38:
<<: *test-template
docker:
- image: circleci/python:3.8

test-39:
<<: *test-template
docker:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3 :: Only",
],
packages=find_packages(exclude=['tests']),
keywords="py.test pytest lockable resource",
entry_points={"pytest11": ["pytest_lockable = pytest_lockable.plugin"]},
python_requires='>=3.7, <4',
python_requires='>=3.8, <4',
install_requires=[
'pytest',
'lockable>=0.9.0,<0.11.0'
'lockable>=0.11.0,<0.12.0'
],
extras_require={ # Optional
'dev': ['pynose', 'coveralls', 'pylint', 'coverage'],
Expand Down

0 comments on commit c101e07

Please sign in to comment.