Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop older versions of Python
Browse files Browse the repository at this point in the history
zeroSteiner committed Jan 26, 2025
1 parent 3066380 commit 1ee18f3
Showing 2 changed files with 5 additions and 10 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -7,16 +7,10 @@ on:
jobs:
unit-tests:
name: Test on Python v${{ matrix.python-version }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- pipenv-version: '2022.4.8'
python-version: '3.6'
- pipenv-version: '2022.4.8'
python-version: '3.7'
- pipenv-version: '2022.4.8'
python-version: '3.8'
- pipenv-version: '2022.4.8'
python-version: '3.9'
- pipenv-version: '2023.2.4'
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -91,13 +91,14 @@
'Operating System :: OS Independent',
#'Programming Language :: Python :: 3.4', # dropped in v4.0
#'Programming Language :: Python :: 3.5', # dropped in v4.0
'Programming Language :: Python :: 3.6', # will be dropped in v5.0
'Programming Language :: Python :: 3.7', # will be dropped in v5.0
'Programming Language :: Python :: 3.8', # will be dropped in v5.0
#'Programming Language :: Python :: 3.6', # dropped in v5.0
#'Programming Language :: Python :: 3.7', # dropped in v5.0
#'Programming Language :: Python :: 3.8', # dropped in v5.0
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)

0 comments on commit 1ee18f3

Please sign in to comment.