File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,15 @@ jobs:
16
16
- name : Set up Python
17
17
uses : actions/setup-python@v2
18
18
with :
19
- python-version : ' 3.7 '
19
+ python-version : ' 3.x '
20
20
- name : Install dependencies
21
21
run : |
22
- sudo apt-get install gcc libpq-dev -y
23
- sudo apt-get install python-dev python-pip -y
24
- sudo apt-get install python3-dev python3-pip python3-venv python3-wheel -y
25
- pip3 install --upgrade pip
26
- pip3 install setuptools wheel twine --upgrade --force
22
+ python -m pip install --upgrade pip
23
+ pip install setuptools wheel twine
27
24
- name : Build and publish
28
25
env :
29
26
TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
30
27
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
31
28
run : |
32
- python3 setup.py sdist bdist_wheel
33
- twine upload dist/*
29
+ python setup.py sdist bdist_wheel
30
+ twine upload dist/*
Original file line number Diff line number Diff line change 1
- from distutils . core import setup
1
+ from setuptools import setup
2
2
3
3
setup (
4
4
name = "extra_keras_datasets" ,
You can’t perform that action at this time.
0 commit comments