Skip to content

Commit b323570

Browse files
committed
Remove install requires
1 parent 5f777bb commit b323570

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
NEWS
22
----
33

4+
New in 2.0.4:
5+
- remove the install_requires from setup.py
6+
7+
New in 2.0.2a0, 2.0.3:
8+
- attempts to fix installation in PyPi
9+
410
New in 2.0.2:
511
- removed shebang from example/cupstree.py
612
- ignore driverless utilities for postscriptdriver tags creation (Fedora bug #1873385)

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
from distutils.core import setup, Extension
3838
import sys
39-
VERSION="2.0.3"
39+
VERSION="2.0.4"
4040
libraries=["cups"]
4141

4242
if sys.platform == "darwin" or sys.platform.startswith("freebsd"):
@@ -61,10 +61,6 @@
6161
"Programming Language :: Python :: 3",
6262
],
6363
license="GPLv2+",
64-
install_requires=[
65-
'gcc',
66-
'python3-devel',
67-
],
6864
ext_modules=[Extension("cups",
6965
["cupsmodule.c", "cupsconnection.c",
7066
"cupsppd.c", "cupsipp.c"],

0 commit comments

Comments
 (0)