Skip to content

Commit 60faeeb

Browse files
authored
fix python version requirements (#334)
1 parent bb7dc5b commit 60faeeb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ how a consumer would use the library (e.g. adding unit tests, updating documenta
1414

1515
- Incorrect column title on `code42 trusted-activities bulk create` command help text.
1616
- `code42 devices list` will now process `--exclude-most-recently-connected` prior to `--last-connected-before` instead of after.
17+
- The minimum required version of Python for code42cli is now correctly set as 3.6.2.
1718

1819
### Added
1920

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ Use the `code42` command to interact with your Code42 environment.
1616

1717
## Requirements
1818

19-
- Python 3.6.0+
20-
- Code42 Server 6.8.x+
19+
- Python 3.6.2+
2120

2221
## Installation
2322

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929
package_dir={"": "src"},
3030
include_package_data=True,
3131
zip_safe=False,
32-
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
32+
python_requires=">=3.6.2, <4",
3333
install_requires=[
3434
"chardet",
3535
"click>=7.1.1, <8",
3636
"click_plugins>=1.1.1",
3737
"colorama>=0.4.3",
3838
"keyring==18.0.1",
3939
"keyrings.alt==3.2.0",
40-
"ipython>=7.16.1",
40+
"ipython==7.16.1",
4141
"pandas>=1.1.3",
4242
"py42>=1.19.1",
4343
],

0 commit comments

Comments
 (0)