Skip to content
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
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ jobs:
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 1
persist-credentials: false
submodules: true
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Test psql
run: |
psql --version # Needs to be compatible with the postgres container image
Expand All @@ -69,7 +70,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools
python -m pip install tox coveralls
- name: Checkout system space
- name: Check system space
run: |
df
- name: Test with tox
Expand All @@ -82,14 +83,15 @@ jobs:
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 1
persist-credentials: false
submodules: true
- uses: actions/setup-node@v5
with:
node-version: '18.12.1'
- uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
cache: pip
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2005-2021 Galaxy Contributors (see https://github.com/galaxyproject/galaxy/blob/dev/CONTRIBUTORS.md)
Copyright (c) 2005-2025 Galaxy Contributors (see https://github.com/galaxyproject/galaxy/blob/dev/CONTRIBUTORS.md)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "planemo"
dynamic = ["version", "readme", "dependencies"]
description = "Command-line utilities to assist in building tools for the Galaxy project (http://galaxyproject.org/)."
license = { text = "MIT" }
license = "MIT"
license-files = [
"LICENSE",
]
authors = [
{ name = "Galaxy Project and Community", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
Expand Down