Skip to content

Commit

Permalink
ci: merge upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-hunhoff committed Dec 7, 2023
2 parents de1e49a + 8b22856 commit a699d9b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
# across all operating systems
python-version: ["3.7", "3.11"]
python-version: ["3.8", "3.12"]
include:
# on Ubuntu run these as well
- os: ubuntu-20.04
python-version: "3.8"
- os: ubuntu-20.04
python-version: "3.9"
- os: ubuntu-20.04
python-version: "3.10"
- os: ubuntu-20.04
python-version: "3.11"
steps:
- name: Checkout dncil with submodules
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
"pytest-sugar==0.9.7",
"pytest-instafail==0.5.0",
"pytest-cov==4.1.0",
"pycodestyle==2.10.0",
"pycodestyle==2.11.1",
"black==23.3.0",
"isort==5.11.4",
"isort==5.12.0",
"mypy==1.4.1",
"dnfile==0.13.0",
"hexdump==3.3.0",
Expand All @@ -62,5 +62,5 @@
"Programming Language :: Python :: 3",
"Topic :: Security",
],
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit a699d9b

Please sign in to comment.