diff --git a/CHANGELOG.md b/CHANGELOG.md index 198f6711a..1c682c641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,19 @@ # ColdFront Changelog -## [1.1.6] - 2024-03-25 - -- Upgrade to Django 4.2 LTS. [#601](https://github.com/ubccr/coldfront/pull/601) -- Update python version in Dockerfile to 3.8. [#578](https://github.com/ubccr/coldfront/pull/578) -- Add factoryboy Project and Allocation unit tests. [#546](https://github.com/ubccr/coldfront/pull/546) -- Add docs for configuring LDAP auth against Active Directory. [#556](https://github.com/ubccr/coldfront/pull/556) -- Fix grants formatting error. [#442](https://github.com/ubccr/coldfront/issues/442) -- Add docs on creating a plugin. [#472](https://github.com/ubccr/coldfront/issues/472) -- Add justification to allocation invoices. [#305](https://github.com/ubccr/coldfront/issues/305) -- Add docs on configuring generic OIDC auth. [#528](https://github.com/ubccr/coldfront/pull/528) -- Fix bug where notifications were auto-enabled user role changed. [#457](https://github.com/ubccr/coldfront/issues/457) -- Add LDAP user search custom mapping and TLS support. [#545](https://github.com/ubccr/coldfront/pull/545) -- Add docs on collect static for SITE_STATIC usage. [#358](https://github.com/ubccr/coldfront/issues/358) -- Add signal for new allocation requests. [#549](https://github.com/ubccr/coldfront/pull/549) +## [1.1.6] - 2024-03-26 + +- Upgrade to Django 4.2 LTS [#601](https://github.com/ubccr/coldfront/pull/601) +- Update python version in Dockerfile to 3.8 [#578](https://github.com/ubccr/coldfront/pull/578) +- Add factoryboy Project and Allocation unit tests [#546](https://github.com/ubccr/coldfront/pull/546) +- Add docs for configuring LDAP auth against Active Directory [#556](https://github.com/ubccr/coldfront/pull/556) +- Fix grants formatting error [#442](https://github.com/ubccr/coldfront/issues/442) +- Add docs on creating a plugin [#472](https://github.com/ubccr/coldfront/issues/472) +- Add justification to allocation invoices [#305](https://github.com/ubccr/coldfront/issues/305) +- Add docs on configuring generic OIDC auth [#528](https://github.com/ubccr/coldfront/pull/528) +- Fix bug where notifications were auto-enabled user role changed [#457](https://github.com/ubccr/coldfront/issues/457) +- Add LDAP user search custom mapping and TLS support [#545](https://github.com/ubccr/coldfront/pull/545) +- Add docs on `collect static` for `SITE_STATIC` usage [#358](https://github.com/ubccr/coldfront/issues/358) +- Add signal for new allocation requests [#549](https://github.com/ubccr/coldfront/pull/549) ## [1.1.5] - 2023-07-12 @@ -147,4 +147,5 @@ [1.1.3]: https://github.com/ubccr/coldfront/releases/tag/v1.1.3 [1.1.4]: https://github.com/ubccr/coldfront/releases/tag/v1.1.4 [1.1.5]: https://github.com/ubccr/coldfront/releases/tag/v1.1.5 +[1.1.6]: https://github.com/ubccr/coldfront/releases/tag/v1.1.6 [Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.6...HEAD diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..6aab9482a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta:__legacy__" diff --git a/setup.py b/setup.py index 0a39d3d64..c6764581d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ long_description=long_description, long_description_content_type="text/markdown", keywords='high-performance-computing resource-allocation', - url='http://coldfront.io', + url='https://coldfront.readthedocs.io', project_urls={ 'Bug Tracker': 'https://github.com/ubccr/coldfront/issues', 'Documentation': 'https://coldfront.readthedocs.io', @@ -21,7 +21,7 @@ }, author='Andrew E. Bruno, Dori Sajdak, Mohammad Zia', license='GNU General Public License v3 (GPLv3)', - python_requires='>=3.6', + python_requires='>=3.8', packages=find_packages(), install_requires=[ 'arrow==1.3.0',