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 7b9f498 + 421b5ae commit c99fce7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 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
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
install_requires=requirements,
extras_require={
"dev": [
"pytest==7.2.1",
"pytest-sugar==0.9.6",
"pytest-instafail==0.4.2",
"pytest-cov==4.0.0",
"pycodestyle==2.10.0",
"black==23.1.0",
"isort==5.11.4",
"mypy==1.0.1",
"pytest==7.4.3",
"pytest-sugar==0.9.7",
"pytest-instafail==0.5.0",
"pytest-cov==4.1.0",
"pycodestyle==2.11.1",
"black==23.11.0",
"isort==5.12.0",
"mypy==1.7.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 c99fce7

Please sign in to comment.