Skip to content

Commit

Permalink
#53: Removed Python 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
hkage committed Mar 14, 2024
1 parent a20f1bc commit 1053d42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
matrix:
image:
- 'python:2.7-buster'
- 'python:3.4-stretch'
- 'python:3.5-buster'
- 'python:3.6-bullseye'
- 'python:3.7-bookworm'
Expand All @@ -32,7 +31,6 @@ jobs:
run: pip install "importlib-metadata<3"
if: >-
matrix.image == 'python:2.7-buster' ||
matrix.image == 'python:3.4-stretch' ||
matrix.image == 'python:3.5-buster' ||
matrix.image == 'python:3.6-bullseye' ||
matrix.image == 'python:3.7-bookworm'
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def run(self):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down
9 changes: 4 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
requires = virtualenv<20.22.0
envlist = flake8,py27,py34,py35,py36,py37,py38,py39,py310,py311,py312
envlist = flake8,py27,py35,py36,py37,py38,py39,py310,py311,py312

[testenv:flake8]
deps = flake8
Expand All @@ -11,16 +11,15 @@ setenv =
PYTHONPATH = {toxinidir}
deps =
# faker
py{27,34}: faker<4
py27: faker<4
# parmap
py{27,34,35}: parmap==1.5.2
py{27,35}: parmap==1.5.2
# psycopg2
py27: psycopg2-binary==2.8.4
# PyYAML
py27: pyyaml<6
py34: pyyaml<5.3
# pytest
py{27,34,35}: pytest==4.6.11
py{27,35}: pytest==4.6.11
py{36,37,38,39,310,311,312}: pytest==6.2.5
py27: attrs<19.2
py27: more-itertools<8.11
Expand Down

0 comments on commit 1053d42

Please sign in to comment.