Skip to content

Commit

Permalink
dep: lower pandas and numpy dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Gigahawk committed Feb 4, 2022
1 parent e8f4b1b commit 6cf18a1
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 32 deletions.
2 changes: 1 addition & 1 deletion dh2vrml/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.3'
__version__ = '0.1.4'
51 changes: 24 additions & 27 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dh2vrml"
version = "0.1.3"
version = "0.1.4"
description = "Library and CLI tool to convert Denavit–Hartenberg parameters to an X3D model"
authors = ["Jasper Chan <jasperchan515@gmail.com>"]
license = "MIT"
Expand All @@ -12,10 +12,10 @@ repository = "https://github.com/Gigahawk/dh2vrml"
python = "^3.8"
x3d = "^4.0.47"
xmlschema = "^1.9.2"
numpy = "^1.22.1"
numpy = "^1.21"
PyYAML = "^6.0"
click = "^8.0.3"
pandas = "^1.4.0"
pandas = "^1.3"

[tool.poetry.dev-dependencies]
pytest = "^5.2"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dh2vrml.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '0.1.3'
assert __version__ == '0.1.4'

0 comments on commit 6cf18a1

Please sign in to comment.