diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cbfb00d84..c67126387 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,10 +12,10 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v2 - - name: Set Up Python 3.10 + - name: Set Up Python 3.14 uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.14" - name: Install pytest and flake8 run: | diff --git a/app/__pycache__/main.cpython-313.pyc b/app/__pycache__/main.cpython-313.pyc new file mode 100644 index 000000000..85e7d5803 Binary files /dev/null and b/app/__pycache__/main.cpython-313.pyc differ diff --git a/app/main.py b/app/main.py index f07695b9b..5789d4378 100644 --- a/app/main.py +++ b/app/main.py @@ -16,4 +16,7 @@ } collection_of_coins = {1, 2, 25} -# write your code here +sorted_variables = { + "mutable": [my_favourite_films, marks, collection_of_coins], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info] +} diff --git a/requirements.txt b/requirements.txt index 3f202d6e7..28b413272 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -flake8==5.0.4 -flake8-annotations==2.9.1 -flake8-quotes==3.3.1 -flake8-variables-names==0.0.5 -pep8-naming==0.13.2 -pytest==7.1.3 +flake8 +flake8-annotations +flake8-quotes +flake8-variables-names +pep8-naming +pytest diff --git a/tests/__pycache__/__init__.cpython-313.pyc b/tests/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 000000000..6f2ab3e2d Binary files /dev/null and b/tests/__pycache__/__init__.cpython-313.pyc differ diff --git a/tests/__pycache__/test_main.cpython-313-pytest-9.1.0.pyc b/tests/__pycache__/test_main.cpython-313-pytest-9.1.0.pyc new file mode 100644 index 000000000..b6d6b5737 Binary files /dev/null and b/tests/__pycache__/test_main.cpython-313-pytest-9.1.0.pyc differ