removed typing_extensions requirement

This commit is contained in:
Brett Kuprel 2022-07-02 06:34:47 -04:00
parent 4b632555b5
commit e0386f991c
2 changed files with 3 additions and 4 deletions

2
min_dalle.ipynb vendored
View File

@ -88,7 +88,7 @@
"id": "c52TV1GbBNgS" "id": "c52TV1GbBNgS"
}, },
"source": [ "source": [
"### Generate an Image" "### Generate Images"
] ]
}, },
{ {

View File

@ -5,7 +5,7 @@ setuptools.setup(
name='min-dalle', name='min-dalle',
description = 'min(DALL·E)', description = 'min(DALL·E)',
long_description=(Path(__file__).parent / "README").read_text(), long_description=(Path(__file__).parent / "README").read_text(),
version='0.2.5', version='0.2.6',
author='Brett Kuprel', author='Brett Kuprel',
author_email='brkuprel@gmail.com', author_email='brkuprel@gmail.com',
url='https://github.com/kuprel/min-dalle', url='https://github.com/kuprel/min-dalle',
@ -15,8 +15,7 @@ setuptools.setup(
], ],
license='MIT', license='MIT',
install_requires=[ install_requires=[
'torch>=1.11.0', 'torch>=1.10.0'
'typing_extensions>=4.1.0'
], ],
keywords = [ keywords = [
'artificial intelligence', 'artificial intelligence',