Skip to content

Commit

Permalink
- dropped support for python 3.8 and added support for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rptmat57 committed Nov 13, 2024
1 parent ce0e44f commit 527dea9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Code style: black](https://img.shields.io/badge/python%20style-black-000000.svg)](https://github.com/psf/black)
[![Code style: djlint](https://img.shields.io/badge/html%20style-djlint-black.svg)](https://www.djlint.com)

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO?label=python)](https://www.python.org/downloads/release/python-380/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO?label=python)](https://www.python.org/downloads/release/python-390/)
[![Docker Image Version (latest semver)](https://img.shields.io/docker/v/nanofab/nemo?label=NEMO%20docker%20version)](https://hub.docker.com/r/nanofab/nemo)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/usnistgov/nemo?label=NEMO%20github%20version)](https://github.com/usnistgov/NEMO/releases)
[![PyPI](https://img.shields.io/pypi/v/nemo?label=NEMO%20pypi%20version)](https://pypi.org/project/NEMO/)
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="NEMO",
version="6.1.0.dev",
python_requires=">=3.8, <4",
python_requires=">=3.9, <4",
packages=find_namespace_packages(exclude=["resources", "resources.*", "build", "build.*"]),
include_package_data=True,
url="https://github.com/usnistgov/NEMO",
Expand All @@ -21,11 +21,11 @@
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django :: 4.2",
"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",
"Programming Language :: Python :: 3.13",
],
install_requires=[
"cryptography==42.0.8",
Expand All @@ -37,7 +37,7 @@
"drf-excel==2.4.0",
"drf-flex-fields==1.0.2",
"ldap3==2.9.1",
"Pillow==10.3.0",
"Pillow==11.0.0",
"pymodbus==3.3.2",
"python-dateutil==2.9.0",
"requests==2.32.3",
Expand Down

0 comments on commit 527dea9

Please sign in to comment.