Skip to content

Commit

Permalink
Changes for deployment (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Jan 31, 2022
1 parent a58c843 commit 0d1bbcb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
pypi_token:
PYPI_TOKEN:
secure: /FwQrmudDyj+Mu3DaxLEo23Y6/OEgdHJqyWyZTjkJKje8pxCOrUorN8ZlXRGXbd3UA60emClt0M+SI+xqyA/qkpqZTgd5CKohpVAGH2EfzRc/zwJSGJ4tmZmMVAG8ayk6N9zFxCeC+y0BgZPQnj/Eq/RfuS4YIuaKutIUa5gTMmhWpODFKGV/2Wx1w67xWxAoONfEC5j0Gu3R274SS7FfBb4qWyIiBIJMwHGjlgp1Onk8KlpCLauZv8/hGfQDmWEdZ+mjcsTYyQYr1xfr1/FjQ==
matrix:
- DESCRIPTION: "Windows with 32-bit Python 3.10"
Expand All @@ -26,7 +26,11 @@ install:
- sh: config/appveyor/install.sh

build_script:
- cmd: "%PYTHON%\\python.exe setup.py bdist_msi bdist_wheel"
# Note that bdist_msi will change the version number to work-around limitations
# of the MSI version version numbering. Hence a MSI build is done separately
# from building the wheel to not influence its version number.
- cmd: "%PYTHON%\\python.exe setup.py bdist_msi"
- cmd: "%PYTHON%\\python.exe setup.py bdist_wheel"

test_script:
- cmd: "%PYTHON%\\python.exe run_tests.py"
Expand Down
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dfdatetime (20211229-1) unstable; urgency=low
dfdatetime (20220131-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline maintainers <[email protected]> Wed, 29 Dec 2021 08:18:31 +0100
-- Log2Timeline maintainers <[email protected]> Mon, 31 Jan 2022 12:59:15 +0100
2 changes: 1 addition & 1 deletion dfdatetime/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
from dfdatetime import webkit_time


__version__ = '20211229'
__version__ = '20220131'
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# General information about the project.
# pylint: disable=redefined-builtin
project = 'dfDateTime'
copyright = 'The dfDateTime Project Authors'
copyright = 'The dfDateTime authors'
version = dfdatetime.__version__
release = dfdatetime.__version__

Expand Down

0 comments on commit 0d1bbcb

Please sign in to comment.