Skip to content

Commit

Permalink
update setup to remove py37 and add py312
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Jun 20, 2024
1 parent 35f566b commit 6375578
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Changes
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
==========================================================================================

* Nothing new for the moment.
* Drop Python 3.7.
* Add Python 3.12.

.. _changes_0.4.5:

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'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 :: Only',
'Topic :: Scientific/Engineering :: Atmospheric Science',
]
Expand All @@ -42,5 +42,5 @@
include_package_data=True,
zip_safe=False,
install_requires=reqs,
python_requires=">=3.7,<3.12",
python_requires=">=3.8,<3.13",
)

0 comments on commit 6375578

Please sign in to comment.