Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
python-version: ['3.10']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -33,7 +33,7 @@ jobs:
key: pip-"${{ runner.os }}"-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements.dev.txt') }}-${{ hashFiles('setup.py') }}
restore-keys: pip-"${{ runner.os }}"

path: ${{ env.pythonver.pythonLocation }}/lib/python3.9/site-packages
path: ${{ env.pythonver.pythonLocation }}/lib/python3.10/site-packages

- name: Pull typing stubs from cache
uses: actions/cache@v3
Expand All @@ -46,7 +46,7 @@ jobs:

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
python-version: '3.10'
miniconda-version: "latest"
activate-environment: cybersim
auto-activate-base: false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ To run your environment within a docker container, we recommend running `docker`

This method is not maintained anymore, please prefer instead running under
a WSL subsystem Linux environment.
But if you insist you want to start by installing [Python 3.9](https://www.python.org/downloads/windows/) then in a Powershell prompt run the `./init.ps1` script.
But if you insist you want to start by installing [Python 3.10](https://www.python.org/downloads/windows/) then in a Powershell prompt run the `./init.ps1` script.

## Getting started quickly using Docker

Expand Down
2 changes: 1 addition & 1 deletion cyberbattle/agents/baseline/run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3.9
#!/usr/bin/python3.10

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Expand Down
2 changes: 1 addition & 1 deletion env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- plotly
- conda-forge
dependencies:
- python=3.9
- python=3.10
- pyright=1.1.374
- nodejs
- nb_conda_kernels=2.3.1
Expand Down
2 changes: 1 addition & 1 deletion notebooks/run_benchmark.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#!/usr/bin/python3.9
#!/usr/bin/python3.10

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Expand Down
Loading