Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix version and crlf #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
72 changes: 36 additions & 36 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
[tool.poetry]
name = "astral"
version = "2.0.1"
description = "Calculations for the position of the sun and moon."
keywords = ["sun", "moon", "sunrise", "sunset", "dawn", "dusk"]
authors = ["Simon Kennedy <sffjunkie+code@gmail.com>"]
license = "Apache-2.0"
readme = "README.rst"
documentation = "https://astral.readthedocs.io/en/stable/index.html"
repository = "https://github.com/sffjunkie/astral"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
packages = [
{ include = "astral", from = "src"},
{ include = "doc", from = "src", format = "sdist"},
{ include = "test", from = "src", format = "sdist"},
]
[tool.poetry.dependencies]
python = "^3.6"
pytz = "*"
dataclasses = { version="*", python = "3.6"}
[tool.poetry.dev-dependencies]
freezegun = "*"
pytest = "5.0.1"
tox = "*"
pylint = "^2.4.4"
[build-system]
requires = ["poetry>=1.0.0b1"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "astral"
version = "2.0.2"
description = "Calculations for the position of the sun and moon."
keywords = ["sun", "moon", "sunrise", "sunset", "dawn", "dusk"]
authors = ["Simon Kennedy <sffjunkie+code@gmail.com>"]
license = "Apache-2.0"
readme = "README.rst"
documentation = "https://astral.readthedocs.io/en/stable/index.html"
repository = "https://github.com/sffjunkie/astral"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
packages = [
{ include = "astral", from = "src"},
{ include = "doc", from = "src", format = "sdist"},
{ include = "test", from = "src", format = "sdist"},
]

[tool.poetry.dependencies]
python = "^3.6"
pytz = "*"
dataclasses = { version="*", python = "3.6"}

[tool.poetry.dev-dependencies]
freezegun = "*"
pytest = "5.0.1"
tox = "*"
pylint = "^2.4.4"

[build-system]
requires = ["poetry>=1.0.0b1"]
build-backend = "poetry.masonry.api"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = astral
version = 2.0.1
version = 2.0.2
description = Calculations for the position of the sun and moon.
description-file = README.rst
keywords = sun, moon, sunrise, sunset, dawn, dusk
Expand Down
2 changes: 1 addition & 1 deletion src/astral/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"dms_to_float",
]

__version__ = "2.0.1"
__version__ = "2.0.2"
__author__ = "Simon Kennedy <sffjunkie+code@gmail.com>"


Expand Down
2 changes: 1 addition & 1 deletion src/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Simon Kennedy"
copyright = "2009-2020, %s" % author
version = "2.0"
release = "2.0.1"
release = "2.0.2"

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Expand Down