Skip to content

Commit

Permalink
tools: bump github action modules
Browse files Browse the repository at this point in the history
This fixes Node12 -> Node16 warning messages
  • Loading branch information
Mathias Brulatout authored and mbrulatout committed Nov 24, 2023
1 parent 7c53f2a commit 21c5d60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run linters
run: tox -e lint
- name: Test with tox
run: tox -e py
- name: Run linters
run: tox -e lint

5 comments on commit 21c5d60

@AntonArsentiev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello everyone, I would like to use your library, because you have python 3.11 support, could you please fix your build?

@mbrulatout
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👋
Nice to see new users!
We'll fix that and prepare a new release.

@AntonArsentiev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please tell me the approximate time frame for receiving a new release =)

@mbrulatout
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now :)
1.3.0 is available

@AntonArsentiev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow, thanks a lot!

Please sign in to comment.