From ffbdfaa87834d0a23f4147ef74164170d4400f86 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Wed, 12 Feb 2020 09:39:47 +1100 Subject: Workaround for pip install on Window into a virtual environment. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 548bff8..d940657 100644 --- a/setup.py +++ b/setup.py @@ -424,6 +424,8 @@ PYTHON_VERSION = get_python_config('VERSION') if os.name == 'nt': if hasattr(sys, 'real_prefix'): PYTHON_LIBDIR = sys.real_prefix + elif hasattr(sys, 'base_prefix'): + PYTHON_LIBDIR = sys.base_prefix else: PYTHON_LIBDIR = get_python_config('BINDIR') -- cgit v1.2.1 From 0bde173cbee7089b93a573ffbac5c3ac28f3a045 Mon Sep 17 00:00:00 2001 From: Asterios Dimitriou Date: Wed, 12 Feb 2020 21:12:53 +0200 Subject: Fix minor gramatical error --- docs/configuration-directives/WSGIChunkedRequest.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration-directives/WSGIChunkedRequest.rst b/docs/configuration-directives/WSGIChunkedRequest.rst index 059103a..4d0ea6b 100644 --- a/docs/configuration-directives/WSGIChunkedRequest.rst +++ b/docs/configuration-directives/WSGIChunkedRequest.rst @@ -29,7 +29,7 @@ block size passed as argument and do this until ``read()`` returns an empty string. Because both calling methods are not allowed under WSGI specification, in -using these your code will not technically be portable to other WSGI hosting +using these, your code will not technically be portable to other WSGI hosting mechanisms, although if those other WSGI servers support it, you will be okay. @@ -43,6 +43,6 @@ request WSGI ``environ`` dictionary. When this is done the web frameworks will always read all available input and ignore ``CONTENT_LENGTH``. Because mod_wsgi guarantees that an empty string is returned when all input -is exhausted, it will will always set this flag. +is exhausted, it will always set this flag. It is known that Flask/Werkzeug supports the ``wsgi.input_terminated`` flag. -- cgit v1.2.1 From 811812f53e11cb4a4f262831ae8846dc43df5eda Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 17 Feb 2020 09:29:02 +1100 Subject: Increment version to 4.7.1. --- src/server/wsgi_version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/wsgi_version.h b/src/server/wsgi_version.h index 3a25587..271b50e 100755 --- a/src/server/wsgi_version.h +++ b/src/server/wsgi_version.h @@ -25,8 +25,8 @@ #define MOD_WSGI_MAJORVERSION_NUMBER 4 #define MOD_WSGI_MINORVERSION_NUMBER 7 -#define MOD_WSGI_MICROVERSION_NUMBER 0 -#define MOD_WSGI_VERSION_STRING "4.7.0" +#define MOD_WSGI_MICROVERSION_NUMBER 1 +#define MOD_WSGI_VERSION_STRING "4.7.1" /* ------------------------------------------------------------------------- */ -- cgit v1.2.1 From 8bb90de60fd63225023c0365804726129c7448f4 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 17 Feb 2020 09:31:14 +1100 Subject: Update copyright year. --- configure.ac | 2 +- docs/conf.py | 2 +- src/server/mod_wsgi.c | 2 +- src/server/wsgi_apache.c | 2 +- src/server/wsgi_apache.h | 2 +- src/server/wsgi_buckets.c | 2 +- src/server/wsgi_buckets.h | 2 +- src/server/wsgi_convert.c | 2 +- src/server/wsgi_convert.h | 2 +- src/server/wsgi_daemon.c | 2 +- src/server/wsgi_daemon.h | 2 +- src/server/wsgi_interp.c | 2 +- src/server/wsgi_interp.h | 2 +- src/server/wsgi_logger.c | 2 +- src/server/wsgi_logger.h | 2 +- src/server/wsgi_memory.h | 2 +- src/server/wsgi_metrics.c | 2 +- src/server/wsgi_metrics.h | 2 +- src/server/wsgi_python.h | 2 +- src/server/wsgi_restrict.c | 2 +- src/server/wsgi_restrict.h | 2 +- src/server/wsgi_server.c | 2 +- src/server/wsgi_server.h | 2 +- src/server/wsgi_stream.c | 2 +- src/server/wsgi_stream.h | 2 +- src/server/wsgi_thread.c | 2 +- src/server/wsgi_thread.h | 2 +- src/server/wsgi_validate.c | 2 +- src/server/wsgi_validate.h | 2 +- src/server/wsgi_version.h | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/configure.ac b/configure.ac index 1a58137..63d1bbc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl vim: set sw=4 expandtab : dnl -dnl Copyright 2007-2018 GRAHAM DUMPLETON +dnl Copyright 2007-2020 GRAHAM DUMPLETON dnl dnl Licensed under the Apache License, Version 2.0 (the "License"); dnl you may not use this file except in compliance with the License. diff --git a/docs/conf.py b/docs/conf.py index 3374409..cba9938 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'mod_wsgi' -copyright = u'2007-2019, Graham Dumpleton' +copyright = u'2007-2020, Graham Dumpleton' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/src/server/mod_wsgi.c b/src/server/mod_wsgi.c index a2b6153..d3c6302 100644 --- a/src/server/mod_wsgi.c +++ b/src/server/mod_wsgi.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_apache.c b/src/server/wsgi_apache.c index 40e706b..8cc4e83 100644 --- a/src/server/wsgi_apache.c +++ b/src/server/wsgi_apache.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_apache.h b/src/server/wsgi_apache.h index 32fe52f..a223522 100644 --- a/src/server/wsgi_apache.h +++ b/src/server/wsgi_apache.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_buckets.c b/src/server/wsgi_buckets.c index 7ddb902..e3a6dd9 100644 --- a/src/server/wsgi_buckets.c +++ b/src/server/wsgi_buckets.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_buckets.h b/src/server/wsgi_buckets.h index 4317e83..e56e727 100644 --- a/src/server/wsgi_buckets.h +++ b/src/server/wsgi_buckets.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_convert.c b/src/server/wsgi_convert.c index 48b84b7..0accdbf 100644 --- a/src/server/wsgi_convert.c +++ b/src/server/wsgi_convert.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_convert.h b/src/server/wsgi_convert.h index fcbb894..e6cdbde 100644 --- a/src/server/wsgi_convert.h +++ b/src/server/wsgi_convert.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_daemon.c b/src/server/wsgi_daemon.c index 3d08871..60b4c4d 100644 --- a/src/server/wsgi_daemon.c +++ b/src/server/wsgi_daemon.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_daemon.h b/src/server/wsgi_daemon.h index 77e344a..ec112fa 100644 --- a/src/server/wsgi_daemon.h +++ b/src/server/wsgi_daemon.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_interp.c b/src/server/wsgi_interp.c index 3fbca04..48680f4 100644 --- a/src/server/wsgi_interp.c +++ b/src/server/wsgi_interp.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_interp.h b/src/server/wsgi_interp.h index 6e6ffff..18df8f0 100644 --- a/src/server/wsgi_interp.h +++ b/src/server/wsgi_interp.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_logger.c b/src/server/wsgi_logger.c index d67f805..71c7d69 100644 --- a/src/server/wsgi_logger.c +++ b/src/server/wsgi_logger.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_logger.h b/src/server/wsgi_logger.h index ac98412..a973430 100644 --- a/src/server/wsgi_logger.h +++ b/src/server/wsgi_logger.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_memory.h b/src/server/wsgi_memory.h index 6be3b5d..9203c4d 100644 --- a/src/server/wsgi_memory.h +++ b/src/server/wsgi_memory.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_metrics.c b/src/server/wsgi_metrics.c index d828181..b147d54 100644 --- a/src/server/wsgi_metrics.c +++ b/src/server/wsgi_metrics.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_metrics.h b/src/server/wsgi_metrics.h index fd63c73..9d69806 100644 --- a/src/server/wsgi_metrics.h +++ b/src/server/wsgi_metrics.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_python.h b/src/server/wsgi_python.h index fd30ecc..0464fe6 100644 --- a/src/server/wsgi_python.h +++ b/src/server/wsgi_python.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_restrict.c b/src/server/wsgi_restrict.c index 8ce32f8..3825a47 100644 --- a/src/server/wsgi_restrict.c +++ b/src/server/wsgi_restrict.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_restrict.h b/src/server/wsgi_restrict.h index 8b83b51..cc41c4c 100644 --- a/src/server/wsgi_restrict.h +++ b/src/server/wsgi_restrict.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_server.c b/src/server/wsgi_server.c index cfbd197..b3eca28 100644 --- a/src/server/wsgi_server.c +++ b/src/server/wsgi_server.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_server.h b/src/server/wsgi_server.h index 3f24ac3..07ded14 100644 --- a/src/server/wsgi_server.h +++ b/src/server/wsgi_server.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_stream.c b/src/server/wsgi_stream.c index 76fe7ec..70b2545 100644 --- a/src/server/wsgi_stream.c +++ b/src/server/wsgi_stream.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_stream.h b/src/server/wsgi_stream.h index 7de278d..1edb6a6 100644 --- a/src/server/wsgi_stream.h +++ b/src/server/wsgi_stream.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_thread.c b/src/server/wsgi_thread.c index 0c266f2..ff0264d 100644 --- a/src/server/wsgi_thread.c +++ b/src/server/wsgi_thread.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_thread.h b/src/server/wsgi_thread.h index eb30368..284f1b5 100644 --- a/src/server/wsgi_thread.h +++ b/src/server/wsgi_thread.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_validate.c b/src/server/wsgi_validate.c index aaf6c7a..3753182 100644 --- a/src/server/wsgi_validate.c +++ b/src/server/wsgi_validate.c @@ -1,7 +1,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_validate.h b/src/server/wsgi_validate.h index 9a03cec..fe06900 100644 --- a/src/server/wsgi_validate.h +++ b/src/server/wsgi_validate.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/server/wsgi_version.h b/src/server/wsgi_version.h index 271b50e..998ac2f 100755 --- a/src/server/wsgi_version.h +++ b/src/server/wsgi_version.h @@ -4,7 +4,7 @@ /* ------------------------------------------------------------------------- */ /* - * Copyright 2007-2019 GRAHAM DUMPLETON + * Copyright 2007-2020 GRAHAM DUMPLETON * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. -- cgit v1.2.1 From e65eae5530f863c723f3c7f409015d2cc4a3c4b3 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 17 Feb 2020 09:49:37 +1100 Subject: Add release notes for 4.7.1. --- docs/release-notes.rst | 1 + docs/release-notes/version-4.7.1.rst | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 docs/release-notes/version-4.7.1.rst diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 964571b..50d0b98 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -6,6 +6,7 @@ Release Notes :maxdepth: 2 release-notes/version-4.7.0 + release-notes/version-4.7.1 release-notes/version-4.6.8 release-notes/version-4.6.7 diff --git a/docs/release-notes/version-4.7.1.rst b/docs/release-notes/version-4.7.1.rst new file mode 100644 index 0000000..9acc339 --- /dev/null +++ b/docs/release-notes/version-4.7.1.rst @@ -0,0 +1,14 @@ +============= +Version 4.7.1 +============= + +Version 4.7.1 of mod_wsgi can be obtained from: + + https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.7.1 + +Bugs Fixed +---------- + +* Fix up installation on Windows into a virtual environment when + using latest ``virtualenv`` version, or recent Python versions + with the bundled ``venv`` module for creating virtual environments. -- cgit v1.2.1 From 3dd7425ce6abcd31ceab2657a8db3a19f83ab482 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 17 Feb 2020 09:51:16 +1100 Subject: Try and provide separate PyPi instructions for mod_wsgi-standalone package. --- README-standalone.rst | 30 ++++++++++++++++++++++++++++++ setup.py | 7 ++++++- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 README-standalone.rst diff --git a/README-standalone.rst b/README-standalone.rst new file mode 100644 index 0000000..7ce3bea --- /dev/null +++ b/README-standalone.rst @@ -0,0 +1,30 @@ +Overview +-------- + +The mod_wsgi package provides an Apache module that implements a WSGI +compliant interface for hosting Python based web applications on top of the +Apache web server. + +The primary package for mod_wsgi is available on the Python package index +(PyPi) as ``mod_wsgi``. That package assumes that you have a suitable +version of Apache pre-installed on your target system, and if you don't, +installation of the package will fail. + +If you are on a UNIX like system (Linux, macOS) and need a version of +Apache to be installed for you, you can use the ``mod_wsgi-standalone`` +package on PyPi instead. When installing the ``mod_wsgi-standalone`` +package it will first trigger the installation of the ``mod_wsgi-httpd`` +package, which will result in a version of Apache being installed as +part of your Python installation. Next the ``mod_wsgi`` package will be +installed, with it using the version of Apache installed by the +``mod_wsgi-httpd`` package rather than any system package for Apache. + +Note that this method of installation is only suitable for where you want +to use ``mod_wsgi-expres``. It cannot be used to build mod_wsgi for use +with your system Apache installation. This installation method will also +not work on Windows. + +When installing mod_wsgi using this method, except that you will install +the ``mod_wsgi-standalone`` package instead of the ``mod_wsgi`` package, +you should follow installation and usage instructions outlined on the +PyPi page for the ``mod_wsgi`` package. diff --git a/setup.py b/setup.py index d940657..bf272ba 100644 --- a/setup.py +++ b/setup.py @@ -544,11 +544,16 @@ if os.name != 'nt': # Now finally run distutils. +package_name = 'mod_wsgi' long_description = open('README.rst').read() standalone = os.path.exists('pyproject.toml') -setup(name = standalone and 'mod_wsgi-standalone' or 'mod_wsgi', +if standalone: + package_name = 'mod_wsgi-standalone' + long_description = open('README-standalone.rst').read() + +setup(name = package_name, version = _version(), description = 'Installer for Apache/mod_wsgi.', long_description = long_description, -- cgit v1.2.1 From 6db33f20331958c0991ef3faa1cf27dc230ee676 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 17 Feb 2020 10:01:06 +1100 Subject: Need to include standalone README file in package. --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 2952dd0..f28e72a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,6 +3,7 @@ include configure include LICENSE include Makefile.in include README.rst +include README-standalone.rst include CREDITS.rst include src/server/*.h include src/server/*.c -- cgit v1.2.1 From 3ffdcecb7075bb254a245130aa55b2a1dae0a55b Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 17 Feb 2020 10:02:08 +1100 Subject: Remove build directory to be safe. --- package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.sh b/package.sh index a9d9768..ee5c58f 100755 --- a/package.sh +++ b/package.sh @@ -2,7 +2,7 @@ set -eo pipefail -rm -rf dist +rm -rf build dist rm -f pyproject.toml -- cgit v1.2.1