Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove support for python 3.8 #58

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Documentation

on:
push:
branches:
- main
workflow_dispatch:

#push:
# branches:
# - main

jobs:
build:
Expand All @@ -12,10 +14,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.12"

- name: Install mikeplus
run: pip install .[dev]
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/full_test_2024_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Full test

on:
workflow_dispatch:

#push:
# branches: [ "main" ]
#pull_request:
Expand All @@ -13,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.12"]

steps:
- name: Checkout branch with MIKE+ dependency
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@
name: Python application

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

#push:
# branches: [ "main" ]
#pull_request:
# branches: [ "main" ]

jobs:
build:

runs-on: windows-latest
strategy:
matrix:
python-version: ['3.8']
python-version: ['3.9']

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ name = "mikeplus"
version = "2024.1.0"
dependencies = [
"numpy",
'pythonnet<=2.5.2; python_version < "3.7.0"',
'pythonnet>=3.0.0a2; python_version >= "3.7.0"',
'pythonnet>=3.0',
"pandas",
]

Expand All @@ -20,14 +19,13 @@ authors = [
]
description = "A python script package to manipulate MIKE+ database, run simulation by using MIKE+ data, run tools based on MIKE+ data"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down