Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiefl committed Apr 9, 2023
1 parent 85d613b commit 2bec3bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions PYPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ These are instructions for myself on how to make new pip-installable pooltool ve
Information comes from
https://betterscientificsoftware.github.io/python-for-hpc/tutorials/python-pypi-packaging/#creating-a-python-package

0. Little stuff: check that `requirements.txt` matches install_requires in
`setup.py`. Make sure `pooltool.__init__.py` has version X.X.X. If you added
data files, make sure they are included in the `MANIFEST.in`
0. Little stuff: check that `requirements.txt` matches install_requires in `setup.py`. Make sure `pooltool.__init__.py` has version X.X.X. If you added data files, make sure they are included in the `MANIFEST.in`. Update `logo.png` if its not a sub-version (rename logo.png to previous version (e.g. v0p1.png) open Blender file, update textures, render at top, save as logo.png)

1. Change the version in `setup.py`. Rather than X.X.X, use X.X.X.dev0. This
version is temporary until I'm positive that things are working properly.
Expand Down
4 changes: 2 additions & 2 deletions pooltool/config/settings
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
room = 1
floor = 1
table = 1
shadows = 0
shadows = 1
shader = 1
lights = 1
physical_based_rendering = 1
physical_based_rendering = 0
debug = 0
fps = 45
fps_inactive = 5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="pooltool-billiards",
version="0.2.0.dev3",
version="0.2.0",
packages=find_packages(),
scripts=["run_pooltool"],
author_email="[email protected]",
Expand Down

0 comments on commit 2bec3bb

Please sign in to comment.