-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrading python and node to 3.9 and 18.x (#164)
* Upgrading python and node to 3.9 and 18.x * Allow greater than 3.9 * Updating lock * Actually update node * Adding ansible python install
- Loading branch information
1 parent
59ddcf1
commit 5fdc0fe
Showing
10 changed files
with
600 additions
and
497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Set up Node 16.x | ||
- name: Set up Node 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 18 | ||
- name: Check if package-lock.json is up to date | ||
run: | | ||
npx --yes [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16 | ||
18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
[tool.poetry] | ||
name = "new-train-tracker" | ||
version = "2.3.0" | ||
version = "2.3.1" | ||
description = "New Train Tracker by TransitMattters" | ||
authors = ["TransitMatters Labs Team"] | ||
license = "MIT" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8.1, <3.11" | ||
flask = "1.1.4" | ||
python = "^3.9, <3.12" | ||
flask = "2.3.3" | ||
aiohttp = "3.8.5" | ||
boto3 = "1.26.153" | ||
gunicorn = "20.1.0" | ||
json-api-doc = "0.15.0" | ||
pytz = "2023.3" | ||
MarkupSafe = "2.0.1" | ||
schedule = "1.1.0" | ||
MarkupSafe = "2.1.3" | ||
schedule = "1.2.1" | ||
|
||
|
||
[tool.poetry.dev-dependencies] | ||
pip = ">=23.0" | ||
black = "21.12b0" | ||
pylint = "2.13.5" | ||
flake8 = "6.1.0" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core>=1.5.0"] | ||
requires = ["poetry-core>=1.6.0"] | ||
build-backend = "poetry.core.masonry.api" |