Skip to content

Commit 49c9a19

Browse files
authored
Drop python<3.6 and simplify dependencies (#229)
I've defensively updated the min. required Python version to 3.6, which is the minimal version stated in the conda-forge recipe. Note that the latest officially supported Python version is currently 3.9, so one could go higher if desired. This update allows removing special handling of dependencies for older python versions.
1 parent b79b961 commit 49c9a19

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
setuptools<45 ; python_version < "3"
2-
setuptools>=70.0.0 ; python_version >= "3"
1+
setuptools>=70.0.0
32
PyYAML==6.0.1
4-
enum34==1.0.4 ; python_version < "3.4"
53
stdlib-list>=0.6.0
64
tomlkit>=0.7.0
75
coverage>=5.5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def run_tests(self):
3636
name='pydeps',
3737
version=version,
3838
packages=setuptools.find_packages(exclude=['tests*']),
39+
python_requires=">=3.6",
3940
install_requires=[
40-
'enum34; python_version < "3.4"',
4141
'stdlib_list',
4242
],
4343
long_description=io.open('README.rst', encoding='utf8').read(),

0 commit comments

Comments
 (0)