diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb9775f..8d61ed7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: os: [ ubuntu-latest, macos-latest, windows-latest ] python-version: [ "3.11" ] include: - - python-version: "3.5" + - python-version: "3.6" os: ubuntu-20.04 - python-version: "3.8" os: ubuntu-latest diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d9014f2..c0df152 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -27,7 +27,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 # Override language selection by uncommenting this and choosing your languages # with: # languages: go, javascript, csharp, python, cpp, java @@ -35,7 +35,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -49,4 +49,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/setup.py b/setup.py index 8700f69..308a560 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ version=__version__, packages=["hookee", "hookee.plugins"], - python_requires=">=3.5", + python_requires=">=3.6", install_requires=[ "pluginbase", "confuse", @@ -56,7 +56,6 @@ "Operating System :: POSIX :: Linux", "Operating System :: Unix", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8",