[Git][debian-gis-team/glymur][upstream] New upstream version 0.9.8
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Sat Mar 12 15:13:17 GMT 2022
Antonio Valentino pushed to branch upstream at Debian GIS Project / glymur
Commits:
50a479dc by Antonio Valentino at 2022-03-12T14:55:56+00:00
New upstream version 0.9.8
- - - - -
6 changed files:
- CHANGES.txt
- + azure-pipelines.yml
- docs/source/conf.py
- docs/source/whatsnew/0.9.rst
- glymur/version.py
- setup.cfg
Changes:
=====================================
CHANGES.txt
=====================================
@@ -1,3 +1,9 @@
+March 5, 2022 - v0.9.8
+ Fix install requirements
+
+January 9, 2022 - v0.9.7.post1
+ Fix setup.cfg issue
+
December 27, 2021 - v0.9.7
Remove distutils in favor of setuptools
Add recognition of IMF profiles
=====================================
azure-pipelines.yml
=====================================
@@ -0,0 +1,30 @@
+# Python package
+# Create and test a Python package on multiple Python versions.
+# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
+# https://docs.microsoft.com/azure/devops/pipelines/languages/python
+
+trigger:
+- master
+
+pool:
+ vmImage: ubuntu-latest
+strategy:
+ matrix:
+ Python37:
+ python.version: '3.7'
+
+steps:
+- task: UsePythonVersion at 0
+ inputs:
+ versionSpec: '$(python.version)'
+ displayName: 'Use Python $(python.version)'
+
+- script: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+ displayName: 'Install dependencies'
+
+- script: |
+ pip install pytest pytest-azurepipelines
+ pytest
+ displayName: 'pytest'
=====================================
docs/source/conf.py
=====================================
@@ -69,7 +69,7 @@ master_doc = 'index'
# General information about the project.
project = 'glymur'
-copyright = '2013-2021, John Evans'
+copyright = '2013-2022, John Evans'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -78,7 +78,7 @@ copyright = '2013-2021, John Evans'
# The short X.Y version.
version = '0.9'
# The full version, including alpha/beta/rc tags.
-release = '0.9.7'
+release = '0.9.8'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
=====================================
docs/source/whatsnew/0.9.rst
=====================================
@@ -2,6 +2,12 @@
Changes in glymur 0.9
#####################
+****************
+Changes in 0.9.8
+****************
+
+ Fix install requirements.
+
****************
Changes in 0.9.7
****************
=====================================
glymur/version.py
=====================================
@@ -21,7 +21,7 @@ from .lib import tiff
# Do not change the format of this next line! Doing so risks breaking
# setup.py
-version = "0.9.7"
+version = "0.9.8"
version_tuple = parse(version).release
=====================================
setup.cfg
=====================================
@@ -1,17 +1,17 @@
[metadata]
-name = glymur
-version = 0.9.7
+name = Glymur
+version = 0.9.8
author = 'John Evans'
-author_email = 'john.g.evans.ne at gmail.com'
+author_email = "John Evans" <john.g.evans.ne at gmail.com>
license = 'MIT'
-long_description_content_type = 'text/markdown',
+long_description_content_type = text/markdown
long_description =
**glymur** contains a Python interface to the OpenJPEG library which
allows one to read and write JPEG 2000 files.
-url = 'https://github.com/quintusdias/glymur'
+url = https://github.com/quintusdias/glymur
classifiers =
- Programming Language :: Python"
+ Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
@@ -27,6 +27,7 @@ packages = find:
install_requires =
numpy
lxml
+ packaging
setuptools
python_requires = >=3.7
include_package_data = True
View it on GitLab: https://salsa.debian.org/debian-gis-team/glymur/-/commit/50a479dc449ac3182560d58a323244ce85256067
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/glymur/-/commit/50a479dc449ac3182560d58a323244ce85256067
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20220312/1f7f4c60/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list