Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ celerybeat-schedule
# virtualenv
.venv
venv/
.venv*/
ENV/
venv37/
venv38/
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = "3.2"
# The full version, including alpha/beta/rc tags
release = "3.2.3"
release = "3.2.4"

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 1 addition & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
pytest
pythonnet~=3.0.1
tox
pyyaml
tox
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_version(name):
script_dir = os.path.dirname(os.path.realpath(__file__))
script_dir = os.path.join(script_dir, name)
if not os.path.exists(os.path.join(script_dir, 'VERSION')):
version = '3.2.3'
version = '3.2.4'
else:
with open(os.path.join(script_dir, "VERSION"), "r") as version_file:
version = version_file.read().rstrip()
Expand All @@ -43,7 +43,11 @@ def read_contents(file_to_read):
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=["pythonnet~=3.0.1", "PyYAML"],
install_requires=[
"pythonnet~=3.0.1; python_version < '3.10'",
"pythonnet~=3.1.0; python_version >= '3.10'",
"PyYAML"
],
tests_require=["pytest", "numpy"],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# `tox -e py39,py311,flake8,docs`

[tox]
envlist = py38, py39, py310, py311, py312, flake8
envlist = py38, py39, py310, py311, py312, py313, py314, flake8

[testenv]
commands = pytest --junitxml={envlogdir}/junit-{envname}.xml {posargs}
Expand All @@ -23,8 +23,6 @@ setenv = PYTHONPATH = {toxinidir}/tests
passenv = vsdev.json
deps =
pytest
pythonnet~=3.0.1
pyyaml
numpy

[pytest]
Expand Down