Skip to content

Commit

Permalink
Merge pull request #48 from mdmintz/refresh-dependencies
Browse files Browse the repository at this point in the history
Refresh Python dependencies
  • Loading branch information
mdmintz authored Aug 8, 2023
2 parents f38c06e + e3e25dc commit fbf81c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pygments>=2.14.0;python_version<"3.7"
pygments>=2.16.1;python_version>="3.7"
tabcompleter>=1.2.1
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
print("\nERROR! Publishing to PyPI requires Python>=3.9")
sys.exit()
print("\n*** Checking code health with flake8:\n")
os.system("python -m pip install 'flake8==6.0.0'")
os.system("python -m pip install 'flake8==6.1.0'")
flake8_status = os.system("flake8 --exclude=.eggs,temp")
if flake8_status != 0:
print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")
Expand Down Expand Up @@ -71,7 +71,7 @@

setup(
name="pdbp",
version="1.4.3",
version="1.4.4",
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 @@ -109,6 +109,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
Expand All @@ -122,7 +123,7 @@
python_requires=">=3.6",
install_requires=[
'pygments>=2.14.0;python_version<"3.7"',
'pygments>=2.15.1;python_version>="3.7"',
'pygments>=2.16.1;python_version>="3.7"',
"tabcompleter>=1.2.1",
],
setup_requires=[],
Expand Down

0 comments on commit fbf81c2

Please sign in to comment.