Skip to content

Commit

Permalink
Newest pydantic causing import issues in executable
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Feb 27, 2021
1 parent f5c2c86 commit e835a65
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Insatll requirements
run: |
python -m pip install --upgrade pip setuptools --ignore-installed
python -m pip install --upgrade wheel
python -m pip install --upgrade wheel typing_extensions
python -m pip install -r requirements-build.txt
python -m pip install --upgrade pyqt5-tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_linux_legacy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Insatll requirements
run: |
python -m pip install --upgrade pip setuptools --ignore-installed
python -m pip install --upgrade wheel
python -m pip install --upgrade wheel typing_extensions
python -m pip install -r requirements-build.txt
python -m pip install --upgrade pyqt5-tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Insatll requirements
run: |
python -m pip install --upgrade pip setuptools --ignore-installed
python -m pip install --upgrade wheel
python -m pip install --upgrade wheel typing_extensions
python -m pip install -r requirements-build.txt
- name: Grab iso-639 lists
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
shell: cmd
run: |
python -m pip install --upgrade pip setuptools --ignore-installed
python -m pip install --upgrade pypiwin32 wheel
python -m pip install --upgrade pypiwin32 wheel typing_extensions
python -m pip install -r requirements-build.txt
- name: Grab iso-639 lists
Expand Down
2 changes: 1 addition & 1 deletion FastFlix_Nix_OneFile.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ for root, dirs, files in os.walk('fastflix'):
for file in files:
all_fastflix_files.append((os.path.join(root,file), root))

all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys']
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions']
with open("requirements-build.txt", "r") as reqs:
for line in reqs:
package = line.split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
Expand Down
3 changes: 1 addition & 2 deletions FastFlix_Windows_Installer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ for root, dirs, files in os.walk('fastflix'):
for file in files:
all_fastflix_files.append((os.path.join(root,file), root))


all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys']
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions']
with open("requirements-build.txt", "r") as reqs:
for line in reqs:
package = line.split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
Expand Down
2 changes: 1 addition & 1 deletion FastFlix_Windows_OneFile.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ for root, dirs, files in os.walk('fastflix'):
for file in files:
all_fastflix_files.append((os.path.join(root,file), root))

all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys']
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions']
with open("requirements-build.txt", "r") as reqs:
for line in reqs:
package = line.split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
Expand Down

0 comments on commit e835a65

Please sign in to comment.