Skip to content

Commit

Permalink
fix python version requirements (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanag13 authored Oct 21, 2021
1 parent bb7dc5b commit 60faeeb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ how a consumer would use the library (e.g. adding unit tests, updating documenta

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

### Added

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ Use the `code42` command to interact with your Code42 environment.

## Requirements

- Python 3.6.0+
- Code42 Server 6.8.x+
- Python 3.6.2+

## Installation

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
python_requires=">=3.6.2, <4",
install_requires=[
"chardet",
"click>=7.1.1, <8",
"click_plugins>=1.1.1",
"colorama>=0.4.3",
"keyring==18.0.1",
"keyrings.alt==3.2.0",
"ipython>=7.16.1",
"ipython==7.16.1",
"pandas>=1.1.3",
"py42>=1.19.1",
],
Expand Down

0 comments on commit 60faeeb

Please sign in to comment.