Skip to content

Commit 942bdc4

Browse files
committed
Update setup to limit to python >= 3.9
1 parent feab7f2 commit 942bdc4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ message: If you use this software, please cite it using these metadata.
33
title: Draw Lines
44
abstract: Draw lines on the console with optional text.
55
type: software
6-
version: 0.1.0
6+
version: 0.1.1
77
date-released: 2024-05-22
88
repository-code: https://github.com/DevelopersToolbox/draw-lines-package
99
keywords:

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='wolfsoftware.drawlines',
15-
version='0.1.0',
15+
version='0.1.1',
1616
author='Wolf Software',
1717
author_email='[email protected]',
1818
description='Draw lines on the console with optional text',
@@ -52,5 +52,6 @@
5252
'Programming Language :: Python :: 3.12',
5353
'Operating System :: OS Independent',
5454
'Topic :: Software Development',
55-
]
55+
],
56+
python_requires='>=3.9',
5657
)

0 commit comments

Comments
 (0)