Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
95382583
Unverified
Kaydet (Commit)
95382583
authored
Ock 26, 2018
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Ock 26, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1871 from docker/fix-appveyor
Fix appveyor tests
üst
ba46201c
a5490ad0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
requirements.txt
requirements.txt
+2
-0
setup.py
setup.py
+6
-3
win32-requirements.txt
win32-requirements.txt
+0
-1
No files found.
requirements.txt
Dosyayı görüntüle @
95382583
...
...
@@ -11,6 +11,8 @@ packaging==16.8
pycparser
==2.17
pyOpenSSL
==17.0.0
pyparsing
==2.2.0
pypiwin32
==219; sys_platform == 'win32' and python_version < '3.6'
pypiwin32
==220; sys_platform == 'win32' and python_version >= '3.6'
requests
==2.14.2
six
==1.10.0
websocket-client
==0.40.0
setup.py
Dosyayı görüntüle @
95382583
...
...
@@ -26,9 +26,6 @@ requirements = [
'docker-pycreds >= 0.2.1'
]
if
sys
.
platform
==
'win32'
:
requirements
.
append
(
'pypiwin32 >= 219'
)
extras_require
=
{
':python_version < "3.5"'
:
'backports.ssl_match_hostname >= 3.5'
,
# While not imported explicitly, the ipaddress module is required for
...
...
@@ -36,6 +33,12 @@ extras_require = {
# ServerAltname: https://pypi.python.org/pypi/backports.ssl_match_hostname
':python_version < "3.3"'
:
'ipaddress >= 1.0.16'
,
# win32 APIs if on Windows (required for npipe support)
# Python 3.6 is only compatible with v220 ; Python < 3.5 is not supported
# on v220 ; ALL versions are broken for v222 (as of 2018-01-26)
':sys_platform == "win32" and python_version < "3.6"'
:
'pypiwin32==219'
,
':sys_platform == "win32" and python_version >= "3.6"'
:
'pypiwin32==220'
,
# If using docker-py over TLS, highly recommend this option is
# pip-installed or pinned.
...
...
win32-requirements.txt
Dosyayı görüntüle @
95382583
-r requirements.txt
pypiwin32
>=219
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment