Skip to content

Commit

Permalink
Merge pull request spotify#72 from spotify/lynn/small-fixups
Browse files Browse the repository at this point in the history
[global] Explicit python version requirements + fixup logo image link
  • Loading branch information
econchick authored Sep 26, 2020
2 parents d68fe48 + c4923d3 commit efb0838
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. image:: https://spotify-klio-klio.readthedocs-hosted.com/en/latest/_static/shitty_logo.png
.. image:: docs/src/_static/images/shitty_logo.png
:alt: Klio Logo
:width: 70px

Expand Down
4 changes: 4 additions & 0 deletions audio/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def find_meta(meta):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
META_FILE = read(META_PATH)
Expand All @@ -92,6 +93,8 @@ def find_meta(meta):
EXTRAS_REQUIRE["dev"] = (
EXTRAS_REQUIRE["docs"] + EXTRAS_REQUIRE["tests"] + ["bumpversion", "wheel"]
)
# support 3.5, 3.6, 3.7, & 3.8, matching Beam's support
PYTHON_REQUIRES = ">=3.5, <3.9"


setup(
Expand All @@ -110,4 +113,5 @@ def find_meta(meta):
zip_safe=False,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
python_requires=PYTHON_REQUIRES,
)
4 changes: 4 additions & 0 deletions cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def find_meta(meta):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
META_FILE = read(META_PATH)
Expand Down Expand Up @@ -106,6 +107,8 @@ def find_meta(meta):
+ EXTRAS_REQUIRE["tests"]
+ ["klio-devtools", "bumpversion", "wheel"]
)
# support 3.5, 3.6, 3.7, & 3.8, matching Beam's support
PYTHON_REQUIRES = ">=3.5, <3.9"

setup(
name=NAME,
Expand All @@ -124,4 +127,5 @@ def find_meta(meta):
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
entry_points={"console_scripts": ["klio = klio_cli.cli:main"]},
python_requires=PYTHON_REQUIRES,
)
4 changes: 4 additions & 0 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def find_meta(meta):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
META_FILE = read(META_PATH)
Expand All @@ -93,6 +94,8 @@ def find_meta(meta):
EXTRAS_REQUIRE["dev"] = (
EXTRAS_REQUIRE["docs"] + EXTRAS_REQUIRE["tests"] + ["bumpversion", "wheel"]
)
# support 3.5, 3.6, 3.7, & 3.8, matching Beam's support
PYTHON_REQUIRES = ">=3.5, <3.9"


setup(
Expand All @@ -111,4 +114,5 @@ def find_meta(meta):
zip_safe=False,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
python_requires=PYTHON_REQUIRES,
)
4 changes: 4 additions & 0 deletions devtools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def find_meta(meta):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
META_FILE = read(META_PATH)
Expand All @@ -87,6 +88,8 @@ def find_meta(meta):
],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + ["bumpversion", "wheel"]
# support 3.5, 3.6, 3.7, & 3.8, matching Beam's support
PYTHON_REQUIRES = ">=3.5, <3.9"

setup(
name=NAME,
Expand All @@ -105,4 +108,5 @@ def find_meta(meta):
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
entry_points={"console_scripts": ["klio-dev = klio_devtools.cli:main"]},
python_requires=PYTHON_REQUIRES,
)
4 changes: 4 additions & 0 deletions exec/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def find_meta(meta):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
META_FILE = read(META_PATH)
Expand Down Expand Up @@ -106,6 +107,8 @@ def find_meta(meta):
EXTRAS_REQUIRE["debug"] +
["bumpversion", "wheel"]
)
# support 3.5, 3.6, 3.7, & 3.8, matching Beam's support
PYTHON_REQUIRES = ">=3.5, <3.9"
AUDIT_PLUGIN_PATH = "klio_exec.commands.audit_steps."
AUDIT_PLUGINS = [
"tempfile=" + AUDIT_PLUGIN_PATH + "tempfile_usage:_init",
Expand Down Expand Up @@ -137,4 +140,5 @@ def find_meta(meta):
],
"klio.plugins.audit": AUDIT_PLUGINS,
},
python_requires=PYTHON_REQUIRES,
)
5 changes: 4 additions & 1 deletion lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def find_meta(meta):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
META_FILE = read(META_PATH)
Expand All @@ -94,7 +95,8 @@ def find_meta(meta):
EXTRAS_REQUIRE["dev"] = (
EXTRAS_REQUIRE["docs"] + EXTRAS_REQUIRE["tests"] + ["bumpversion", "wheel"]
)

# support 3.5, 3.6, 3.7, & 3.8, matching Beam's support
PYTHON_REQUIRES = ">=3.5, <3.9"

setup(
name=NAME,
Expand All @@ -112,4 +114,5 @@ def find_meta(meta):
zip_safe=False,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
python_requires=PYTHON_REQUIRES,
)

0 comments on commit efb0838

Please sign in to comment.