Skip to content

Commit

Permalink
set supported maximum python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ronald-bautista committed May 20, 2022
1 parent 4dd23bf commit 03b8a7a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- synchronize

env:
PYTHON_LATEST: "3.10"
PYTHON_LATEST: "3.9"

jobs:
tests:
Expand All @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.10"]
python-version: ["3.7", "3.9"]

steps:
- name: Checkout Code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [created]

env:
PYTHON_LATEST: "3.10"
PYTHON_LATEST: "3.9"

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Migrates your visiblity information in cloudconformity.com to cloudone.trendmicr
## **⚠ WARNING: This tool will overwrite your Cloud One Conformity**

## Requirements
1. Python v3.7+
1. Python versions 3.7, 3.8, or 3.9
2. Both accounts must have a valid license (Not expired)
3. API Keys for both Legacy Conformity and CloudOne Conformity
- **Note:** Both API Keys must have admin privileges
Expand All @@ -20,7 +20,7 @@ Migrates your visiblity information in cloudconformity.com to cloudone.trendmicr

2) Start a shell/terminal on the folder you just created or chosen.

3) Create a python3 virtual environment (minimum: python v3.7)
3) Create a python3 virtual environment
```
python3 -m venv .venv
```
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = conformity-migration-tool
version = 0.9.1
version = 0.9.2
description = Migrates your visiblity information in cloudconformity.com to cloudone.trendmicro.com
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -22,7 +22,6 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
packages = find:
Expand Down

0 comments on commit 03b8a7a

Please sign in to comment.