Skip to content

Commit

Permalink
Bump python dependencies to >=3.9 (#141)
Browse files Browse the repository at this point in the history
* Bump python dependencies to >=3.9

* Update setup.py

* Remove 3.11 alpha

* Update pythonpublish.yaml

* Update linting.yaml

* Update environment.yml

* Final version changes

* rtd does not like 3.9

* Update readthedocs.yml
  • Loading branch information
jbusecke committed May 10, 2022
1 parent 6132873 commit 696da7b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9"]
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Cache conda
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
- name: set up python
uses: actions/setup-python@v3
with:
python-version: 3.8
python-version: 3.9
- name: Run pre-commit
uses: pre-commit/[email protected]
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-python@v3
name: Install Python
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- uses: actions/setup-python@v3
name: Install Python
with:
python-version: 3.8
python-version: 3.9
- uses: actions/download-artifact@v3
with:
name: releases
Expand Down
5 changes: 5 additions & 0 deletions docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ What's New

v1.2.0 (unreleased)

Breaking changes
~~~~~~~~~~~~~~~~
- Dropped support for python 3.8 (:pull:`141`)
By `Julius Busecke <https://github.com/jbusecke>`_

Documentation
~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(exclude=["docs", "tests", "tests.*", "docs.*"]),
install_requires=install_requires,
extras_require=extras_require,
python_requires=">=3.8",
python_requires=">=3.9",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=long_description,
Expand Down

0 comments on commit 696da7b

Please sign in to comment.