FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
diffusers/src/diffusers/dependency_versions_check.py at main · feisan/diffusers · GitHub
feisan
/
diffusers
Public
forked from
huggingface/diffusers
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
diffusers
/
src
/
diffusers
/
dependency_versions_check.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
47 lines (38 loc) · 1.71 KB
Breadcrumbs
diffusers
/
src
/
diffusers
/
dependency_versions_check.py
Copy path
File metadata and controls
47 lines (38 loc) · 1.71 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 2022 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
sys
from
.
dependency_versions_table
import
deps
from
.
utils
.
versions
import
require_version
,
require_version_core
# define which module versions we always want to check at run time
# (usually the ones defined in `install_requires` in setup.py)
#
# order specific notes:
# - tqdm must be checked before tokenizers
pkgs_to_check_at_runtime
=
"python tqdm regex requests packaging filelock numpy tokenizers"
.
split
()
if
sys
.
version_info
<
(
3
,
7
):
pkgs_to_check_at_runtime
.
append
(
"dataclasses"
)
if
sys
.
version_info
<
(
3
,
8
):
pkgs_to_check_at_runtime
.
append
(
"importlib_metadata"
)
for
pkg
in
pkgs_to_check_at_runtime
:
if
pkg
in
deps
:
if
pkg
==
"tokenizers"
:
# must be loaded here, or else tqdm check may fail
from
.
utils
import
is_tokenizers_available
if
not
is_tokenizers_available
():
continue
# not required, check version only if installed
require_version_core
(
deps
[
pkg
])
else
:
raise
ValueError
(
f"can't find
{
pkg
}
in
{
deps
.
keys
()
}
, check dependency_versions_table.py"
)
def
dep_version_check
(
pkg
,
hint
=
None
):
require_version
(
deps
[
pkg
],
hint
)
Back
|
FazBrowse Home
|
New Git URL