Skip to content

Commit

Permalink
Set version to '1.0.1' for first release and bump to py310
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Aug 30, 2023
1 parent fa06fa8 commit 362edfc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 98 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
submodules: true

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'
cache: 'pip'
cache-dependency-path: |
requirements*.txt
Expand Down
98 changes: 5 additions & 93 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,10 +1,10 @@
[build-system]
requires = ["setuptools >= 42", "wheel"]
requires = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.poetry]
name = "PASCal"
version = "2.0.0"
version = "1.0.1"
description = "Principal Axis Strain Calculator (PASCal) is a web tool designed to help scientists analyse non-ambient lattice parameter data."
readme = "README.md"
keywords = ["materials", "chemistry", "fitting", "strain", "lattice"]
Expand All @@ -21,7 +21,7 @@ repository = "https://github.com/MJCliffe/PASCal"
packages = [{ include = "PASCal", from = "src" }]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"
Flask = "*"
Jinja2 = "*"
numpy = "*"
Expand Down
5 changes: 5 additions & 0 deletions src/PASCal/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import importlib.metadata

__version__ = importlib.metadata.version("PASCal")

__all__ = ("__version__",)

0 comments on commit 362edfc

Please sign in to comment.