Skip to content

Commit

Permalink
Setup / workflow updates
Browse files Browse the repository at this point in the history
  • Loading branch information
John Myers committed Jun 15, 2020
1 parent 95f041d commit 5be7e8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ jobs:
with:
python-version: 3.6
- name: Install
run: |
pip install dataclasses==0.7
run:
pip install -e .
pip install -r test-requirements.txt
- name: Lint
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@
long_description_content_type='text/markdown',
package_dir={'': 'src'},
packages=find_packages('src'),
python_requires=">=3.6",
install_requires=[
'tensorflow_privacy==0.2.2',
'sentencepiece==0.1.91',
'smart_open==2.0.0',
'tqdm<5.0',
'pandas==1.0.3',
'numpy==1.18.3'
'numpy==1.18.3',
'dataclasses==0.7;python_version<"3.7"',
],
extras_require={
'tf': ['tensorflow==2.1.0'],
'py36': ['dataclasses==0.7']
'tf': ['tensorflow==2.1.0']
}
)

0 comments on commit 5be7e8c

Please sign in to comment.