Skip to content

Commit 2282464

Browse files
committed
Fix for #122 and #116
1 parent a71de4e commit 2282464

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

problog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '2.2.5'
1+
version = '2.2.6'

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools >= 61.0"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,17 @@ def run(self):
7575
"License :: OSI Approved :: Apache Software License",
7676
"Intended Audience :: Science/Research",
7777
"Programming Language :: Python :: 3",
78-
"Programming Language :: Python :: 3.6",
79-
"Programming Language :: Python :: 3.7",
8078
"Programming Language :: Python :: 3.8",
79+
"Programming Language :: Python :: 3.9",
80+
"Programming Language :: Python :: 3.10",
81+
"Programming Language :: Python :: 3.11",
82+
"Programming Language :: Python :: 3.12",
8183
"Programming Language :: Prolog",
8284
"Topic :: Scientific/Engineering :: Artificial Intelligence",
8385
],
8486
keywords="prolog probabilistic logic",
8587
packages=find_packages(),
88+
install_requires = ["setuptools"],
8689
extras_require={"sdd": ["pysdd>=0.2.6"]},
8790
entry_points={"console_scripts": ["problog=problog.tasks:main"]},
8891
package_data=package_data,

0 commit comments

Comments
 (0)