forked from chapel-lang/chapel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update remaining python dependencies for various tools (chapel-lang#2…
…6081) [reviewed by @jabraham17] I had started this last week but an outside contributor got to the PyYAML change before I opened my PR :) This does not tackle updating Sphinx, docutils, sphinx-rtd-theme or sphinxcontrib-chapeldomain, as the best update for those would require bumping the oldest version of Python we support to Python 3.10 (and might require updates to our testing system as a result). So I'm waiting on the green light for that from the BTR team. Updates: - pytest (used by the language server) from 8.2.0 to 8.3.3 - pytest-lsp (used by the language server) from 0.4.1. to 0.4.3 - attrs (used by the python bindings) from 23.1.0 to 24.2.0 - cattrs (used by the python bindings) from 23.1.2 to 24.1.2 - pygls (used by the python bindings) from 1.3.0 to 1.3.1 - typeguard (used by the python bindings) from 3.0.2 to 4.3.0 - pycparser (used by c2chapel) from 2.20 to 2.22 - filelock (used by start_test) from 3.12.2 to 3.16.1 - argcomplete (used by start_test) from 3.1.2 to 3.5.1 - setuptools (used by start_test) from 68.0.0 to 75.1.0 - Jinja2 (used by chpldoc) from 3.1.3 to 3.1.4 - Pygments (used by chpldoc) from 2.17.2 to 2.18.0 - urllib3 (used by chpldoc) from 2.2.1 to 2.2.3 - babel (used by chpldoc) from 2.14.0 to 2.16.0 Also did not update two tools that had not had a new version update and didn't look into whether breathe could be updated Ran: - full paratest with futures - and verified that the number of tests and futures run did not change - `make test-chpl-language-server` - test/c2chapel after having explicitly built c2chapel
- Loading branch information
Showing
7 changed files
with
16 additions
and
16 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# tools/c2chapel/Makefile should match so fakeHeaders download matches | ||
pycparser==2.20 | ||
pycparser==2.22 | ||
pycparserext |
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,6 +1,6 @@ | ||
attrs==23.1.0 | ||
cattrs==23.1.2 | ||
attrs==24.2.0 | ||
cattrs==24.1.2 | ||
lsprotocol==2023.0.1 | ||
pygls==1.3.0 | ||
typeguard==3.0.2 | ||
pygls==1.3.1 | ||
typeguard==4.3.0 | ||
ConfigArgParse==1.7 |
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,2 +1,2 @@ | ||
# Split into 3 files to work around problems with CHPL_PIP_FROM_SOURCE | ||
MarkupSafe==2.1.5 | ||
MarkupSafe==3.0.1 |
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,7 +1,7 @@ | ||
# Split into 3 files to work around problems with CHPL_PIP_FROM_SOURCE | ||
Jinja2==3.1.3 | ||
Pygments==2.17.2 | ||
Jinja2==3.1.4 | ||
Pygments==2.18.0 | ||
Sphinx==7.2.6 | ||
urllib3==2.2.1 | ||
urllib3==2.2.3 | ||
docutils==0.20.1 | ||
babel==2.14.0 | ||
babel==2.16.0 |
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,2 +1,2 @@ | ||
pytest==8.2.0 | ||
pytest-lsp==0.4.1 | ||
pytest==8.3.3 | ||
pytest-lsp==0.4.3 |
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,4 +1,4 @@ | ||
PyYAML==6.0.2 | ||
filelock==3.12.2 | ||
argcomplete==3.1.2 | ||
setuptools==68.0.0 | ||
filelock==3.16.1 | ||
argcomplete==3.5.1 | ||
setuptools==75.1.0 |
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