From d594cba917659896d4afbc8d71543c7d94244cc9 Mon Sep 17 00:00:00 2001 From: aslieroglu Date: Mon, 24 Feb 2025 12:58:03 +0100 Subject: [PATCH 1/4] changed gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f5e96db..4dd4d87 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -venv \ No newline at end of file +tictactoe \ No newline at end of file From babf40959267710fb96a73e81d59ad553ee0bef9 Mon Sep 17 00:00:00 2001 From: aslieroglu Date: Mon, 24 Feb 2025 12:58:41 +0100 Subject: [PATCH 2/4] added yaml file --- environment.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 environment.yaml diff --git a/environment.yaml b/environment.yaml new file mode 100644 index 0000000..a45393e --- /dev/null +++ b/environment.yaml @@ -0,0 +1,21 @@ +channels: + - conda-forge +dependencies: + - bzip2=1.0.8=h99b78c6_7 + - ca-certificates=2025.1.31=hf0a4a13_0 + - libexpat=2.6.4=h286801f_0 + - libffi=3.4.2=h3422bc3_5 + - liblzma=5.6.4=h39f12f2_0 + - libsqlite=3.49.1=h3f77e49_1 + - libzlib=1.3.1=h8359307_2 + - ncurses=6.5=h5e97a16_3 + - openssl=3.4.1=h81ee809_0 + - pip=25.0.1=pyh8b19718_0 + - python=3.12.9=hc22306f_0_cpython + - readline=8.2=h1d1bf99_2 + - setuptools=75.8.0=pyhff2d567_0 + - tk=8.6.13=h5083fa2_1 + - tzdata=2025a=h78e105d_0 + - wheel=0.45.1=pyhd8ed1ab_1 + - pip: + - numpy==2.2.3 From 9ef44ca2199d4e5ede4ff4bc3b3e077c40ce61f1 Mon Sep 17 00:00:00 2001 From: aslieroglu Date: Mon, 24 Feb 2025 14:02:15 +0100 Subject: [PATCH 3/4] fixed the yaml file --- environment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/environment.yaml b/environment.yaml index a45393e..05abe77 100644 --- a/environment.yaml +++ b/environment.yaml @@ -19,3 +19,4 @@ dependencies: - wheel=0.45.1=pyhd8ed1ab_1 - pip: - numpy==2.2.3 + - pyxel==2.3.6 \ No newline at end of file From 3d47c7efb42c3b2c269934d8011c0521b3f9fbc4 Mon Sep 17 00:00:00 2001 From: aslieroglu Date: Mon, 24 Feb 2025 14:07:21 +0100 Subject: [PATCH 4/4] added setup section in readme --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 950aef0..b4f6e06 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,10 @@ This contains a game called "Tic Tac Toe", also known as "Naughts and Crosses". ## Setup -(Instructions Here) +To run the game, first you need to create an environment. +- Download/clone the repo. +- In VS Code, go to the project folder. +- Then, create an environment using the environment.yaml file using this command: conda env create -f environment.yaml ## Running the App