comparison pyproject.toml @ 19:c07c92caa09f 1.5.0

release 1.5.0
author drewp@bigasterisk.com
date Thu, 24 Nov 2022 20:37:53 -0800
parents c3bd02c05072
children 52e9c69dc1ce
comparison
equal deleted inserted replaced
18:7f93c77f6325 19:c07c92caa09f
1 [project] 1 [project]
2 name = "background_loop" 2 name = "background_loop"
3 version = "1.4.0" 3 version = "1.5.0"
4 description = "" 4 description = ""
5 authors = [ 5 authors = [
6 {name = "Drew Perttula", email = "drewp@bigasterisk.com"}, 6 {name = "Drew Perttula", email = "drewp@bigasterisk.com"},
7 ] 7 ]
8 license-expression = "MIT" 8 license = "MIT"
9 dependencies = [ 9 dependencies = [
10 'prometheus_client', 10 'prometheus_client',
11 ] 11 ]
12 requires-python = ">=3.9" 12 requires-python = ">=3.9"
13 13
33 filterwarnings = [ 33 filterwarnings = [
34 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed. 34 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed.
35 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning', 35 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning',
36 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed. 36 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed.
37 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning', 37 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning',
38 ] 38 ]]