We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef7de7 commit e113504Copy full SHA for e113504
.github/workflows/binaries-nightly-release.yml
@@ -28,8 +28,6 @@ jobs:
28
run: |
29
conda install -y pytorch torchvision cpuonly -c pytorch-nightly
30
pip install -r requirements-dev.txt
31
- pip install --upgrade --no-cache-dir twine
32
- python setup.py install
33
34
- name: Build and Publish Conda binaries
35
shell: bash -l {0}
@@ -43,6 +41,9 @@ jobs:
43
41
- name: Build and Publish PyPi binaries
44
42
45
+ # workaround to fix https://github.com/pytorch/ignite/issues/2373
+ pip uninstall -y twine pkginfo
46
+ pip install --upgrade --no-cache-dir twine 'pkginfo>=1.8.2'
47
python setup.py sdist bdist_wheel
48
twine --version
49
twine check dist/*
0 commit comments