Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Nov 28, 2023
1 parent 2b039ae commit f99ea5c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cpp/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ This setup script does the following:
- Create a build directory: ***Kata-MarsRover/cpp/build***. All build-related files are generated under this directory.
- Download a copy of cmake compatible with your platform.
- Download the dependencies required to build and test the kata (such as GoogleTest).
- Generate the solution file ***Kata-MarsRover.sln*** for **Visual Studio 2017** on Windows,
- Generate the solution file ***Kata-MarsRover.sln*** for **Visual Studio 2019** on Windows,
or the project file ***Kata-MarsRover.xcodeproj*** for **Xcode** on macOS.
- Run an initial build and test of the kata to ensure that everything is set up properly.

Expand Down Expand Up @@ -113,7 +113,7 @@ Refer to [Using TCR](#using-tcr) section for additional details about TCR and av
<a name="running-the-kata-from-visual-studio"/></a>
### Running the kata from Visual Studio

> ***Supported Versions***: Visual Studio 2017 or later
> ***Supported Versions***: Visual Studio 2019 or later
Open Visual Studio, choose `Open a project or solution`, navigate to
the location containing the cloned kata repository, and open the solution file:
Expand Down
2 changes: 1 addition & 1 deletion cpp/cpp_easy_setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set ARCHIVE_EXTENSION=zip
set CMAKE_BIN_DIR=bin
set CMAKE=cmake.exe
set CTEST=ctest.exe
set CMAKE_GENERATOR_OPTIONS=-G "Visual Studio 15 2017 Win64"
set CMAKE_GENERATOR_OPTIONS=-G "Visual Studio 16 2019"

set CMAKE_VERSION=3.27.8
set CMAKE_EXPECTED_DIR=cmake-%CMAKE_VERSION%-%OS%-%ARCH%
Expand Down
2 changes: 1 addition & 1 deletion cpp/cpp_easy_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ MINGW64_NT-*)
cmake_bin_dir="bin"
cmake="cmake.exe"
ctest="ctest.exe"
cmake_generator_options="-G \"Visual Studio 15 2017 Win64\""
cmake_generator_options="-G \"Visual Studio 16 2019\""
;;
*)
echo "os $(uname -s) is currently not supported."
Expand Down
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pytest == 7.4.3; python_version >= '3.7'
pytest-parametrization == 2022.2.1
mypy == 0.971; python_version < '3.7'
mypy == 1.4.1; python_version in '3.7'
mypy == 1.7.0; python_version >= '3.8'
mypy == 1.7.1; python_version >= '3.8'

0 comments on commit f99ea5c

Please sign in to comment.