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

Version updates #126

Merged
merged 7 commits into from
Jan 4, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8"]
python-version: ["3.9"]

timeout-minutes: 30

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

timeout-minutes: 30

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

timeout-minutes: 30

Expand Down
14 changes: 0 additions & 14 deletions CHANGES.md

This file was deleted.

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) 2021-2023 WhiteMech
Copyright (c) 2021-2025 WhiteMech

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
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include AUTHORS.md
include CONTRIBUTING.md
include CHANGES.md
include LICENSE
include README.md
include Pipfile
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ safety = "*"
bandit = "*"

[requires]
python_version = "3.10"
python_version = "3.12"
1,633 changes: 826 additions & 807 deletions Pipfile.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ If you want to contribute, here's how to set up your development environment.

- Install [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/)
- Clone the repository: `git clone https://github.com/AI-Planning/pddl.git && cd pddl`
- Install development dependencies: `pipenv shell --python 3.8 && pipenv install --dev`
- Install development dependencies: `pipenv shell --python 3.9 && pipenv install --dev`

## Tests

Expand All @@ -226,7 +226,7 @@ and then go to [http://localhost:8000](http://localhost:8000)

`pddl` is released under the MIT License.

Copyright (c) 2021-2023 WhiteMech
Copyright (c) 2021-2025 WhiteMech

## Acknowledgements

Expand Down
1 change: 0 additions & 1 deletion docs/changelog.md

This file was deleted.

1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ nav:
- Home: index.md
- Credits: authors.md
- How to contribute: contributing.md
- Change Log: changelog.md
- References: references.md

theme:
Expand Down
2 changes: 1 addition & 1 deletion pddl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
6 changes: 3 additions & 3 deletions pddl/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand All @@ -15,10 +15,10 @@
__title__ = "pddl"
__description__ = "PDDL parser"
__url__ = "https://github.com/AI-Planning/pddl.git"
__version__ = "0.4.1"
__version__ = "0.4.2"
__author__ = "Marco Favorito, Francesco Fuggitti, Christian Muise"
__author_email__ = (
"marco.favorito@gmail.com, francesco.fuggitti@gmail.com, christian.muise@queensu.ca"
)
__license__ = "MIT License"
__copyright__ = "2021-2023 WhiteMech"
__copyright__ = "2021-2025 WhiteMech"
2 changes: 1 addition & 1 deletion pddl/_validation.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/action.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/core.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/custom_types.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/formatter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/helpers/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/helpers/cache_hash.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/effects.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/functions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/predicates.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/logic/terms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/parser/domain.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/parser/problem.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/parser/symbols.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/parser/typed_list_parser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion pddl/requirements.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
4 changes: 2 additions & 2 deletions scripts/check_copyright.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand All @@ -27,7 +27,7 @@

HEADER_REGEX = r"""(#!/usr/bin/env python3
)?#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ line_length=88


[mypy]
python_version = 3.8
python_version = 3.9
strict_optional = True

# Per-module options:
Expand Down
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand All @@ -20,9 +20,6 @@
with open('README.md') as readme_file:
readme = readme_file.read()

with open('CHANGES.md') as history_file:
history = history_file.read()

here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, 'pddl', '__version__.py'), 'r') as f:
Expand All @@ -41,20 +38,20 @@
author=about['__author__'],
url=about['__url__'],
author_email=about["__author_email__"],
long_description=readme + '\n\n' + history,
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'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',
],
python_requires='>=3.8',
python_requires='>=3.9',
install_requires=install_requires,
license=about["__license__"],
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/code_objects/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/code_objects/blocksworld_fond.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/code_objects/blocksworld_ipc08.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/code_objects/triangle_tireworld.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2021-2023 WhiteMech
# Copyright 2021-2025 WhiteMech
#
# ------------------------------
#
Expand Down
Loading
Loading