Skip to content

Commit

Permalink
build(setup.py): Add missing pydantic dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmussig committed Feb 14, 2023
1 parent eef2a2a commit 45bbba9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/src/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Change log
==========

2.2.1
-----

Build:

* (`#470 <https://github.com/Ecogenomics/GTDBTk/issues/470>`_) Add missing Pydantic dependency.


2.2.0
-----

Expand Down
2 changes: 1 addition & 1 deletion gtdbtk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
__status__ = 'Production'
__title__ = 'GTDB-Tk'
__url__ = 'https://github.com/Ecogenomics/GTDBTk'
__version__ = '2.2.0'
__version__ = '2.2.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def readme():
'gtdbtk = gtdbtk.__main__:main'
]
},
install_requires=["dendropy>=4.1.0", 'numpy>=1.9.0', 'tqdm>=4.35.0'],
install_requires=["dendropy>=4.1.0", 'numpy>=1.9.0', 'tqdm>=4.35.0', 'pydantic'],
license=meta['license'],
long_description=readme(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 45bbba9

Please sign in to comment.