dropping support for python 3.4 (#1099)
* dropping support for python 3.4
This commit is contained in:
parent
29af0685a7
commit
61e1a04b47
|
|
@ -4,6 +4,8 @@
|
||||||
|
|
||||||
- bugfix: cursors and connections now produce spans when used with context managers
|
- bugfix: cursors and connections now produce spans when used with context managers
|
||||||
([#1028](https://github.com/open-telemetry/opentelemetry-python/pull/1028))
|
([#1028](https://github.com/open-telemetry/opentelemetry-python/pull/1028))
|
||||||
|
- Drop support for Python 3.4
|
||||||
|
([#1099](https://github.com/open-telemetry/opentelemetry-python/pull/1099))
|
||||||
|
|
||||||
## Version 0.12b0
|
## Version 0.12b0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,14 +28,13 @@ classifiers =
|
||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.4
|
|
||||||
Programming Language :: Python :: 3.5
|
Programming Language :: Python :: 3.5
|
||||||
Programming Language :: Python :: 3.6
|
Programming Language :: Python :: 3.6
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.4
|
python_requires = >=3.5
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue