Skip to content

Commit

Permalink
Relax attrs requirement (#59)
Browse files Browse the repository at this point in the history
* Relax attrs requirement
* Version and changelog
* Formatting
* Add trigger for pull_request

Co-authored-by: Luminaar <[email protected]>
  • Loading branch information
languitar and Luminaar authored Jun 14, 2021
1 parent 994cd28 commit b29309b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Test Python package
on: [push]
on: [pull_request, push]

jobs:
test:
Expand Down
28 changes: 16 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
# Changelog

## Version 0.10.2
Changes:
- Allow higher version of `attrs` (21.0)

## Version 0.10.1
- Changes:
- Allow higher version of `attrs`
Changes:
- Allow higher version of `attrs`

## Version 0.10.0
- Changes:
- Drop Python3.5 support
Changes:
- Drop Python3.5 support

## Version 0.9.0
- Changes:
- Add the `docker_cleanup` fixture to allow custom cleanup actions for
docker-compose
Changes:
- Add the `docker_cleanup` fixture to allow custom cleanup actions for
docker-compose

## Version 0.8.0
- Changes:
- Add explicit dependencies on `docker-compose` and `pytest`
- Stop using deprecated `pytest-runner` to run package tests
Changes:
- Add explicit dependencies on `docker-compose` and `pytest`
- Stop using deprecated `pytest-runner` to run package tests

## Version 0.7.2
- Changes:
- Update package README
Changes:
- Update package README

## Version 0.7.1
- Minor packaging related fixes
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pytest-docker
version = 0.10.1
version = 0.10.2
description = Simple pytest fixtures for Docker and docker-compose based tests
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -34,7 +34,7 @@ packages=pytest_docker

install_requires =
pytest >=4.0, <7.0
attrs >=19, <21
attrs >=19, <22
docker-compose >=1.27.3, <2.0

[options.extras_require]
Expand Down

0 comments on commit b29309b

Please sign in to comment.