Skip to content

Commit ccab25d

Browse files
committed
remove Python 3.8, add Python 3.14
1 parent d143d57 commit ccab25d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
py:
16+
- "3.14"
1617
- "3.13"
1718
- "3.12"
1819
- "3.11"
1920
- "3.10"
2021
- "3.9"
21-
- "3.8"
2222
os:
2323
- ubuntu-latest
2424
steps:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@
5353
'License :: OSI Approved :: BSD License',
5454
'Operating System :: OS Independent',
5555
"Programming Language :: Python :: 3 :: Only",
56-
'Programming Language :: Python :: 3.8',
5756
'Programming Language :: Python :: 3.9',
5857
'Programming Language :: Python :: 3.10',
5958
'Programming Language :: Python :: 3.11',
6059
'Programming Language :: Python :: 3.12',
6160
'Programming Language :: Python :: 3.13',
61+
'Programming Language :: Python :: 3.14',
6262
'Topic :: Scientific/Engineering :: GIS',
6363
'Topic :: Utilities'
6464
],

vagrant-provision.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exec $SHELL
2626
# 'exec $SHELL' doesn't work well in a provision file. Likely you need to
2727
# run the following commands manually after 'vagrant up'
2828

29-
for VERSION in 3.8 3.9 3.10 3.11 3.12 3.13; do
29+
for VERSION in 3.9 3.10 3.11 3.12 3.13 3.14; do
3030
VERSION=$(pyenv latest --known $VERSION)
3131
echo "Installing $VERSION ..."
3232
pyenv install --skip-existing $VERSION

0 commit comments

Comments
 (0)