Skip to content

Commit

Permalink
Merge pull request #55 from mdmintz/update-requirements
Browse files Browse the repository at this point in the history
Refresh dependencies and drop Python 3.6 support
  • Loading branch information
mdmintz authored Sep 8, 2023
2 parents 268abd2 + 9241f7d commit bbc3aea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pygments>=2.14.0;python_version<"3.7"
pygments>=2.16.1;python_version>="3.7"
tabcompleter>=1.2.1
colorama>=0.4.5;platform_system=="Windows"
pygments>=2.16.1
tabcompleter>=1.3.0
colorama>=0.4.6;platform_system=="Windows"
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""*** pdbp (Pdb+) ***
An advanced console debugger for Python.
Can be used as a drop-in replacement for pdb and pdbpp.
(Python 3.6+)"""
(Python 3.7+)"""
from setuptools import setup, find_packages # noqa
import os
import sys
Expand Down Expand Up @@ -71,7 +71,7 @@

setup(
name="pdbp",
version="1.4.6",
version="1.5.0",
description="pdbp (Pdb+): A drop-in replacement for pdb and pdbpp.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -103,7 +103,6 @@
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -120,12 +119,11 @@
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
],
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
'pygments>=2.14.0;python_version<"3.7"',
'pygments>=2.16.1;python_version>="3.7"',
"tabcompleter>=1.2.1",
'colorama>=0.4.5;platform_system=="Windows"',
"pygments>=2.16.1",
"tabcompleter>=1.3.0",
'colorama>=0.4.6;platform_system=="Windows"',
],
setup_requires=[],
include_package_data=True,
Expand Down

0 comments on commit bbc3aea

Please sign in to comment.