Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
BradyAJohnston committed Sep 25, 2023
1 parent 78f1c1d commit 49970b5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions MolecularNodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@

bl_info = {
"name" : "MolecularNodes",
"author" : "Brady Johnston",
"author" : "Brady Johnston",
"description" : "Toolbox for molecular animations in Blender & Geometry Nodes.",
"blender" : (3, 5, 0),
"version" : (2, 9, 1),
"version" : (2, 10, 0),
"location" : "Scene Properties -> MolecularNodes",
"warning" : "",
"doc_url" : "https://bradyajohnston.github.io/MolecularNodes/",
"tracker_url" : "https://github.com/BradyAJohnston/MolecularNodes/issues",
"doc_url" : "https://bradyajohnston.github.io/MolecularNodes/",
"tracker_url" : "https://github.com/BradyAJohnston/MolecularNodes/issues",
"category" : "Import"
}

Expand All @@ -45,4 +45,4 @@ def unregister():

# register won't be called when MN is run as a module
bpy.app.handlers.load_post.append(_rejuvenate_universe)
bpy.app.handlers.save_pre.append(_sync_universe)
bpy.app.handlers.save_pre.append(_sync_universe)
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ build-backend = "setuptools.build_meta"

[project]
name = "MolecularNodes"
version = "2.9.1"
version = "2.10.0"
authors = [
{name = "Brady Johnston", email = "[email protected]"},
]
description = "Toolbox for molecular animations with Blender and Geometry Nodes."
requires-python = ">=3.10.0"
dependencies = [
"bpy>=3.5.0",
"MDAnalysis==2.5.0",
"MDAnalysis==2.6.1",
"biotite==0.37.0",
"mrcfile",
"eulerangles",
"starfile",
# these test-specific packages should really go in their own

# these test-specific packages should really go in their own
# optional-dependencies, but I can't figure out how to get pit to install them
# TODO: worry about it when we try to make it into an installable package
"pytest",
"pytest-cov",
"pytest",
"pytest-cov",
"pytest-snapshot"
]
[project.optional-dependencies]
Expand Down

0 comments on commit 49970b5

Please sign in to comment.