Skip to content

Commit

Permalink
preparing for release
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbouteiller committed Nov 9, 2022
1 parent 67f9b12 commit 59fcf3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.7", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from setuptools import setup, find_packages
import sys

from pathlib import Path


if sys.version_info < (3, 7):
sys.exit('Sorry, Python < 3.7 is not supported, upgrade your python installation to use tlspyo.')


DEFAULT_KEYS_FOLDER = Path.home() / "tlspyo" / "credentials"
if not DEFAULT_KEYS_FOLDER.exists():
DEFAULT_KEYS_FOLDER.mkdir(parents=True, exist_ok=True)
Expand Down

0 comments on commit 59fcf3f

Please sign in to comment.