Skip to content
Snippets Groups Projects
Verified Commit c5b61568 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: changed python version to python3 in CI/CD

parent efd41b67
No related branches found
No related tags found
1 merge request!41Support for address based testing
Pipeline #4006 passed
......@@ -88,7 +88,7 @@ test-pyo3:
- rustup toolchain install $RUST_VERSION
- rustup override set $RUST_VERSION
- rustc --version
- python setup.py test
- python3 setup.py test
deploy-netlify-preview:
stage: deploy
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from time import time
from boytacean import GameBoy, CPU_FREQ
from os.path import dirname, realpath, join
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from time import time
from boytacean import GameBoy, VISUAL_FREQ
from os.path import dirname, realpath, join, splitext, basename
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from time import time
from pyboy import PyBoy
from os.path import dirname, realpath, join, splitext, basename
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from time import time
from boytacean import VISUAL_FREQ
from boytacean.pyboy import PyBoy
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import sys
from typing import cast
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import sys
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from .gb import GameBoyMode, GameBoy
from .palettes import PALETTES
from .video import VideoCapture
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
__version__: str
COMPILATION_DATE: str
COMPILATION_TIME: str
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from enum import Enum
from contextlib import contextmanager
from typing import Any, Iterable, Union, cast
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from math import ceil
from typing import Union
from sdl2 import (
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
BASIC_PALETTE = "ffffff,c0c0c0,606060,000000"
HOGWARDS_PALETTE = "b6a571,8b7e56,554d35,201d13"
CHRISTMAS_PALETTE = "e8e7df,8bab95,9e5c5e,534d57"
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from enum import Enum
from sys import modules
from typing import IO, Any
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
import unittest
from os.path import dirname, realpath, join
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
from os import remove
from glob import glob
from math import ceil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment