Skip to content

Commit

Permalink
Merge pull request #17 from bird-house/py312
Browse files Browse the repository at this point in the history
update setup to remove py37 and add py312
  • Loading branch information
Zeitsperre committed Jun 20, 2024
2 parents 35f566b + 6a1efe7 commit 11766a7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
test-case: [tests]
include:
- os: ubuntu-20.04
Expand All @@ -55,6 +56,7 @@ jobs:
python-version: "${{ matrix.python-version }}"
- name: Install Dependencies and threddsclient
run: |
pip install -r requirements-sys.txt
pip install -r requirements.txt
pip install -r requirements-dev.txt
python setup.py install
Expand Down
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
2 changes: 2 additions & 0 deletions requirements-sys.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pip>=23; python_version>="3.8"
setuptools>=65.5.1; python_version>="3.8"
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 11766a7

Please sign in to comment.