Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
22a0c16
update python versions and dependencies
Jhsmit Jan 16, 2025
b501b60
separated workflows and extended python versions
cvanelteren Jan 16, 2025
a8798a2
added a main matrix to different python versions
cvanelteren Jan 16, 2025
b9f08d2
added py versions to docs and linter
cvanelteren Jan 16, 2025
1ecb15c
just run job on push without checkout all
cvanelteren Jan 16, 2025
34e1794
main workflow runs build and docs
cvanelteren Jan 16, 2025
303a3e7
fixed python versions
cvanelteren Jan 16, 2025
8b4c805
fixed python versions
cvanelteren Jan 16, 2025
b852254
fixed python versions
cvanelteren Jan 16, 2025
e56a803
dev env needs python version
cvanelteren Jan 16, 2025
d0751dd
fix np version
cvanelteren Jan 16, 2025
ba567af
typo -_-
cvanelteren Jan 16, 2025
e99712d
fixing at most 3.10 due to basemap
cvanelteren Jan 16, 2025
9072ad3
remove support py 3.8
cvanelteren Jan 17, 2025
c6031ee
pin upper limit to py3.13
cvanelteren Jan 17, 2025
e7f52cd
pin upper limit to py3.13
cvanelteren Jan 17, 2025
9021d17
pin upper limit to py3.13 in pyproject
cvanelteren Jan 17, 2025
9756ba9
update dev-env
cvanelteren Jan 17, 2025
de5f50c
moved theme under organization
cvanelteren Jan 17, 2025
4fe4b59
Merge branch 'main' into pyproject_toml
cvanelteren Jan 18, 2025
3f3833d
added mpl flag and baseline checks
cvanelteren Jan 22, 2025
cab11eb
Merge remote-tracking branch 'jhsmit/pyproject_toml' into HEAD
cvanelteren Jan 22, 2025
16f71d0
bump on artefact workflow
cvanelteren Jan 22, 2025
80ce94a
attempt fix getting proper branch
cvanelteren Jan 22, 2025
048b57e
activate env
cvanelteren Jan 22, 2025
f6da16c
typo
cvanelteren Jan 22, 2025
a1d6722
fix
cvanelteren Jan 22, 2025
72768af
added normal tests
cvanelteren Jan 22, 2025
c151026
separate tests
cvanelteren Jan 23, 2025
67b2d20
commenting mpl until fixed upstream
cvanelteren Jan 26, 2025
ecd38be
updated to build on devel
cvanelteren Jan 26, 2025
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
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,21 @@ maintainers = [
]
description = "A succinct matplotlib wrapper for making beautiful, publication-quality graphics."
readme = "README.rst"
requires-python = ">=3.6.0"
requires-python = ">=3.9.0"
Comment thread
cvanelteren marked this conversation as resolved.
Outdated
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dependencies= [
'importlib-metadata; python_version>"3.8"',

"numpy",
Comment thread
cvanelteren marked this conversation as resolved.
Outdated
"matplotlib>=3.9.3"
]
dynamic = ["version"]

Expand Down