Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump wrapt version to 1.14 fix conda install issue for py310 #5698

Closed
wants to merge 3 commits into from
Closed
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
9 changes: 8 additions & 1 deletion .github/workflows/ci-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5

permissions:
contents: write
pull-requests: write
issues: read
packages: none
security-events: write

steps:
- uses: actions/checkout@v2

Expand All @@ -31,7 +38,7 @@ jobs:

- name: Create commit comment
if: failure() && steps.check_reqs.outputs.error
uses: peter-evans/commit-comment@v1
uses: peter-evans/commit-comment@v2
with:
path: pyproject.toml
body: |
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,13 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5

permissions:
contents: write
pull-requests: write
issues: read
packages: none
security-events: write

steps:
- uses: actions/checkout@v2

Expand All @@ -294,9 +301,8 @@ jobs:
#
- name: Create commit comment
if: steps.check_reqs.outcome == 'Failure' # only run if requirements/ are inconsistent
uses: peter-evans/commit-comment@v1
uses: peter-evans/commit-comment@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
path: pyproject.toml
body: |
The requirements/ files are inconsistent!
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ dependencies:
- tqdm~=4.45
- upf_to_json~=0.9.2
- werkzeug<2.2
- wrapt~=1.11
- wrapt~=1.14
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies = [
"tqdm~=4.45",
"upf_to_json~=0.9.2",
"werkzeug<2.2",
"wrapt~=1.11"
"wrapt~=1.14"
]

[project.urls]
Expand Down