Skip to content

Commit

Permalink
Merge pull request #13 from JunAishima/update-version-requirement
Browse files Browse the repository at this point in the history
Update version requirement
  • Loading branch information
JunAishima authored Oct 9, 2024
2 parents 9fbc029 + 6163ab1 commit 9e24b95
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
dependencies: ["pip", "conda"]
fail-fast: false

Expand Down Expand Up @@ -53,7 +53,8 @@ jobs:
if: matrix.dependencies == 'conda'
run: |
set -vxeo pipefail
conda install -y -c conda-forge doct jsonschema mock mongomock pymongo pytest pyyaml requests tornado ujson
conda install -y -c conda-forge doct jsonschema mock pymongo pytest pyyaml requests tornado ujson
pip install mongomock
- name: Install the package
run: |
Expand Down
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@
import os
import sys

# NOTE: This file must remain Python 2 compatible for the foreseeable future,
# to ensure that we error out properly for people with outdated setuptools
# and/or pip.
min_version = (3, 6)
min_version = (3, 8)
if sys.version_info < min_version:
error = """
mxtools does not support Python {0}.{1}.
conftrak does not support Python {0}.{1}.
Python {2}.{3} and above is required. Check your Python version like so:
python3 --version
Expand Down Expand Up @@ -51,7 +48,11 @@ def read(fname):
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
entry_points={"console_scripts": ["conftrak_startup = conftrak.startup:start_server"]},
)

0 comments on commit 9e24b95

Please sign in to comment.