Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Dec 3, 2024
1 parent 2f30c83 commit 730d468
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 252 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cmake 3.30.5
cmake 3.31.1
2 changes: 1 addition & 1 deletion java/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pytest == 7.0.1; python_version < '3.7'
pytest == 7.4.4; python_version in '3.7'
pytest == 8.3.3; python_version >= '3.8'
pytest == 8.3.4; python_version >= '3.8'
pytest-parametrization == 2022.2.1
mypy == 0.971; python_version < '3.7'
mypy == 1.4.1; python_version in '3.7'
Expand Down
2 changes: 1 addition & 1 deletion tcr/TCR.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ After starting the script, you will see a menu that looks like the following:
[TCR] Loading configuration: (...)
[TCR] Loading toolchains configuration
[TCR] Loading languages configuration
[TCR] Starting TCR version 1.3.0...
[TCR] Starting TCR version 1.4.0...
[TCR] Base directory is (...)
[TCR] Found 1 source and 1 test file(s) for java language
[TCR] Work directory is (...)
Expand Down
2 changes: 1 addition & 1 deletion tcr/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tcr 1.3.0
tcr 1.4.0
5 changes: 5 additions & 0 deletions typescript/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

**/node_modules/
**/test_results/
**/coverage/
.pnp.*
.yarn/
.yarnrc.yml
# To prevent conflicts between yarn and npm as long as we're using yarn
package-lock.json

# Snapshot files
**/__snapshots__/
*.snap
6 changes: 4 additions & 2 deletions typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/node": "^22.10.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"scripts": {
"test": "jest --watchAll"
"test": "jest --watchAll",
"coverage": "jest --coverage",
"update-snapshot": "jest --update-snapshot"
},
"jest-junit": {
"outputDirectory": "./test_results"
Expand Down
Loading

0 comments on commit 730d468

Please sign in to comment.