Skip to content

Commit

Permalink
chore: bump actions/checkout, start 3.7 deprecation, get ready for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
carlmontanari committed Oct 1, 2023
1 parent a08eac3 commit 70e3649
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
os: [ubuntu-latest]
version: ["3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
Expand All @@ -32,7 +32,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Weekly Build (3.12-dev)

on:
schedule:
# weekly at 0300 PST/1000 UTC on Sunday
- cron: '0 10 * * 0'
workflow_dispatch:
schedule:
# weekly at 0300 PST/1000 UTC on Sunday
- cron: '0 10 * * 0'

jobs:
build_posix:
Expand All @@ -15,7 +15,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
version: ["3.12-dev"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up python 3.11
uses: actions/setup-python@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os: [ubuntu-latest]
version: ["3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
- name: set up python ${{ matrix.version }}
Expand All @@ -38,7 +38,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dynamic = [
description = "Scrapli's plugin for Nornir"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
requires-python = ">=3.8"
authors = [
{ name = "Carl Montanari", email = "[email protected]" },
]
Expand All @@ -21,11 +21,11 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ nox==2023.4.22
pycodestyle>=2.8.0,<3.0.0
pydocstyle>=6.1.1,<7.0.0
pylama>=8.4.0,<9.0.0
pylint==2.17.5
pylint==2.17.7
pytest-cov>=3.0.0,<5.0.0
pytest>=7.0.0,<8.0.0
toml>=0.10.2,<1.0.0

0 comments on commit 70e3649

Please sign in to comment.