Skip to content

Commit

Permalink
Merge pull request #394 from kytos-ng/fix/backport_typing_ext_freeze
Browse files Browse the repository at this point in the history
[2022.3.2] release: fix/backported typing ext freeze for 2022.3.2
  • Loading branch information
viniarck authored Jun 20, 2023
2 parents 8c6ea96 + 92b1a49 commit d26cdc8
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ All notable changes to the kytos project will be documented in this file.
UNRELEASED - Under development
******************************

[2022.3.2] 2023-06-19
**********************

Fixed
=====
- pinned ``typing-extensions==4.5.0`` to be compatible with ``pydantic``

[2022.3.1] 2023-02-17
**********************

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
# built documents.
#
# The short X.Y version.
version = u'2022.3.1'
version = u'2022.3.2'
show_version = False
# The full version, including alpha/beta/rc tags.
release = u'2022.3.1'
release = u'2022.3.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion kytos/core/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
The present metadata is intended to be used mainly on the setup.
"""
__version__ = '2022.3.1'
__version__ = '2022.3.2'
__author__ = 'Kytos Team'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ traitlets==5.3.0
# ipython
# kytos
# matplotlib-inline
typing-extensions>=4.0.1
typing-extensions==4.5.0
# via
# -r requirements/run.txt
# astroid
Expand Down
2 changes: 1 addition & 1 deletion requirements/run.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ traitlets==5.3.0
# via
# ipython
# matplotlib-inline
typing-extensions>=4.0.1
typing-extensions==4.5.0
# via
# janus
# pydantic
Expand Down
16 changes: 14 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,20 @@ def run(self):
data_files=[(os.path.join(BASE_ENV, 'etc/kytos'), ETC_FILES)],
packages=find_packages(exclude=['tests']),
install_requires=install_requires,
extras_require={'dev': ['pip-tools >= 2.0', 'pytest==7.0.0',
'pytest-cov==3.0.0', 'pytest', 'yala', 'tox']},
extras_require={'dev': [
'pip-tools >= 2.0',
'pytest==7.2.1',
'pytest-cov==4.0.0',
'pytest-asyncio==0.20.3',
'black==23.3.0',
'isort==5.12.0',
'pylint==2.15.0',
'pycodestyle==2.10.0',
'yala==3.2.0',
'tox==3.28.0',
'virtualenv==20.21.0',
'typing-extensions==4.5.0'
]},
cmdclass={
'clean': Cleaner,
'coverage': TestCoverage,
Expand Down

0 comments on commit d26cdc8

Please sign in to comment.