Skip to content

Commit

Permalink
fix(setup): Add changes to the setup
Browse files Browse the repository at this point in the history
  • Loading branch information
fabclmnt committed Jan 23, 2021
1 parent 134e795 commit 343eeea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ tensorflow==2.3.*
tensorflow-privacy==0.5.1
easydict==1.9
pmlb==1.0.*
tqdm
tqdm<5.0
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
],
keywords='data science ydata',
url='https://github.com/ydataai/ydata-synthetic',
python_requires=">=3.6",
license="https://github.com/ydataai/ydata-synthetic/blob/master/LICENSE",
python_requires=">=3.6, <3.9",
packages=find_namespace_packages('src'),
package_dir={'':'src'},
include_package_data=True,
install_requires=requirements,
options={"bdist_wheel": {"universal": True}})
options={"bdist_wheel": {"universal": True}},
install_requires=requirements)

0 comments on commit 343eeea

Please sign in to comment.